Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/dto/BillingTimeDTO.java
2023-03-04 16:29:55 +08:00

32 lines
629 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.dto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@ApiModel("计费模板时段详情")
@Data
public class BillingTimeDTO {
/**
* 时段类型1-尖时2-峰时3-平时4-谷时)
*/
@ApiModelProperty("时段类型1-尖时2-峰时3-平时4-谷时)")
private String type;
/**
* 开始时间
*/
private String startTime;
/**
* 结束时间
*/
private String endTime;
/**
* 时段 例如0000-0500
*/
@ApiModelProperty("时段 例如0000-0500")
private String timeDesc;
}