xuhy
2025-03-26 ccd1837ee6016e0b72557f98ea45fc2e4f152ae1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.order.api.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@ApiModel(value = "监管平台充电用能DTO",description = "监管平台充电用能DTO")
public class ChargingStatisticeVO {
    @ApiModelProperty(value = "站点id")
    private Integer siteId;
    @ApiModelProperty(value = "累计充电量")
    private BigDecimal startTime;
    @ApiModelProperty(value = "累计充电时间")
    private Integer chargingTime;
 
 
}