huliguo
42 分钟以前 5012f07f2505db600fa15dbc95955f5a6f92ba3e
ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/QueryStationsInfoResult.java
@@ -1,5 +1,6 @@
package com.ruoyi.integration.drainage.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import javax.validation.constraints.NotNull;
@@ -17,20 +18,24 @@
    * 当前页数
    */
   @NotNull
   private Integer PageNo;
   @JsonProperty("PageNo")
   private Integer pageNo;
   /**
    * 页码总数
    */
   @NotNull
   private Integer PageCount;
   @JsonProperty("PageCount")
   private Integer pageCount;
   /**
    * 总记录条数
    */
   @NotNull
   private Integer ItemSize;
   @JsonProperty("ItemSize")
   private Integer itemSize;
   /**
    * 充电站信息列表
    */
   @NotNull
   private List<StationInfo> StationInfos;
   @JsonProperty("StationInfos")
   private List<StationInfo> stationInfos;
}