update 预约充电

This commit is contained in:
Guoqs
2024-07-29 14:14:55 +08:00
parent 28679124d0
commit faee861d74
3 changed files with 7 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package com.jsowell.pile.domain;
import java.sql.Time;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;

View File

@@ -475,6 +475,7 @@ public class PileReservationInfoServiceImpl implements PileReservationInfoServic
.pileConnectorCode(pileReservationInfo.getPileConnectorCode())
.startTime(pileReservationInfo.getStartTime().toString())
.endTime(pileReservationInfo.getEndTime().toString())
.verifyIdentity(pileReservationInfo.getVerifyIdentity())
// .freq(pileReservationInfo.getFreq())
.status(pileReservationInfo.getStatus())
.build();

View File

@@ -40,4 +40,9 @@ public class PileReservationInfoVO {
*/
private String status;
/**
* 验证身份(1-是; 0-否)
*/
private String verifyIdentity;
}