Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/vo/PileReservedVO.java
2024-06-18 17:13:29 +08:00

39 lines
649 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.pile.vo;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@Builder
public class PileReservedVO {
private String reservedId;
/**
* 充电桩编号
*/
private String pileSn;
/**
* 预约开始时间
*/
private String startTime;
/**
* 预约结束时间
*/
private String endTime;
/**
* 周期性预约的频率,对于单次预约,该字段可以为 NULL。可能的值包括 daily, weekly, monthly
*/
private String freq;
/**
* 状态0-未生效1-生效)
*/
private String status;
}