Pu Zhibing
2025-02-05 19b7530c7feb8eca1dfecd6502feaf61057fdab8
ruoyi-service/ruoyi-integration/src/main/java/com/ruoyi/integration/drainage/model/QueryStationsInfoResult.java
@@ -2,6 +2,8 @@
import lombok.Data;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Null;
import java.util.List;
/**
@@ -14,17 +16,21 @@
   /**
    * 当前页数
    */
   private Integer PageNo;
   @NotNull
   private Integer pageNo;
   /**
    * 页码总数
    */
   private Integer PageCount;
   @NotNull
   private Integer pageCount;
   /**
    * 总记录条数
    */
   private Integer ItemSize;
   @NotNull
   private Integer itemSize;
   /**
    * 充电站信息列表
    */
   private List<StationInfo> StationInfos;
   @NotNull
   private List<StationInfo> stationInfos;
}