mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 时段 例如:00:00-05:00
|
||||
*/
|
||||
@ApiModelProperty("时段 例如:00:00-05:00")
|
||||
private String timeDesc;
|
||||
}
|
||||
Reference in New Issue
Block a user