| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.Null; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | * yyyy-MM-dd HH:mm:ss |
| | | */ |
| | | @Null |
| | | @JsonProperty("LastQueryTime") |
| | | private String lastQueryTime; |
| | | /** |
| | | * 查询页码 |
| | | * 默认1 |
| | | */ |
| | | @Null |
| | | @JsonProperty("PageNo") |
| | | private Integer pageNo; |
| | | /** |
| | | * 每页数量 |
| | | * 默认10 |
| | | */ |
| | | @Null |
| | | @JsonProperty("PageSize") |
| | | private Integer pageSize; |
| | | /** |
| | | * 运营商ID |
| | | */ |
| | | @Null |
| | | @JsonProperty("OperatorID") |
| | | private String OperatorID; |
| | | /** |
| | | * 充电站ID列表 |
| | | */ |
| | | @Null |
| | | @JsonProperty("StationIDs") |
| | | private List<String> StationIDs; |
| | | |
| | | } |