update 预约充电

This commit is contained in:
Guoqs
2024-07-26 09:52:03 +08:00
parent 371b3c34e5
commit 44d276fbf4
10 changed files with 106 additions and 17 deletions

View File

@@ -0,0 +1,43 @@
package com.jsowell.pile.vo;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@Builder
public class PileReservationInfoVO {
// private String reservationId;
/**
* 充电桩编号
*/
private String pileSn;
/**
* 充电桩枪口编号
*/
private String pileConnectorCode;
/**
* 预约开始时间
*/
private String startTime;
/**
* 预约结束时间
*/
private String endTime;
/**
* 周期性预约的频率,对于单次预约,该字段可以为 NULL。可能的值包括 daily, weekly, monthly
*/
// private String freq;
/**
* 状态0-未生效1-生效)
*/
private String status;
}