| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | @Data |
| | | public class QueryStationStats { |
| | | /** |
| | | * 运营商ID |
| | | */ |
| | | @NotNull |
| | | private String OperatorID; |
| | | /** |
| | | * 充电站ID |
| | | */ |
| | | @NotNull |
| | | private String StationID; |
| | | @JsonProperty("StationID") |
| | | private String stationID; |
| | | /** |
| | | * 统计开始时间 |
| | | * yyyy-MM-dd |
| | | */ |
| | | @NotNull |
| | | private String StartTime; |
| | | @JsonProperty("StartTime") |
| | | private String startTime; |
| | | /** |
| | | * 统计结束时间 |
| | | * yyyy-MM-dd |
| | | */ |
| | | @NotNull |
| | | private String EndTime; |
| | | @JsonProperty("EndTime") |
| | | private String endTime; |
| | | } |