mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 12:35:07 +08:00
update 修改充电桩信息
This commit is contained in:
@@ -8,6 +8,7 @@ import lombok.NoArgsConstructor;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalTime;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
@@ -40,18 +41,43 @@ public class ReservationChargingCommand {
|
||||
private String operation;
|
||||
|
||||
/**
|
||||
* 开始时间
|
||||
* 预约类型
|
||||
* 0x00:单次0x01:周期
|
||||
*/
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private Date reservedStartTime;
|
||||
private String reservationType;
|
||||
|
||||
/**
|
||||
* vin1
|
||||
*/
|
||||
private String vin1;
|
||||
|
||||
/**
|
||||
* vin2
|
||||
*/
|
||||
private String vin2;
|
||||
|
||||
/**
|
||||
* vin3
|
||||
*/
|
||||
private String vin3;
|
||||
|
||||
/**
|
||||
* 开始时间
|
||||
* 2024年6月28日15点21分 改为时分秒
|
||||
*/
|
||||
// @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
// private Date reservedStartTime;
|
||||
private LocalTime reservedStartTime;
|
||||
|
||||
/**
|
||||
* 结束时间
|
||||
* 2024年6月28日15点21分 改为时分秒
|
||||
*/
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private Date reservedEndTime;
|
||||
// @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
// private Date reservedEndTime;
|
||||
private LocalTime reservedEndTime;
|
||||
|
||||
/**
|
||||
* 启动金额
|
||||
|
||||
Reference in New Issue
Block a user