| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import javax.validation.constraints.Null; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 当前页数 |
| | | */ |
| | | private Integer PageNo; |
| | | @NotNull |
| | | @JsonProperty("PageNo") |
| | | private Integer pageNo; |
| | | /** |
| | | * 页码总数 |
| | | */ |
| | | private Integer PageCount; |
| | | @NotNull |
| | | @JsonProperty("PageCount") |
| | | private Integer pageCount; |
| | | /** |
| | | * 总记录条数 |
| | | */ |
| | | private Integer ItemSize; |
| | | @NotNull |
| | | @JsonProperty("ItemSize") |
| | | private Integer itemSize; |
| | | /** |
| | | * 充电站信息列表 |
| | | */ |
| | | private List<StationInfo> StationInfos; |
| | | @NotNull |
| | | @JsonProperty("StationInfos") |
| | | private List<StationInfo> stationInfos; |
| | | } |