NetInfoVO.java 915 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.NetInfoDTO;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * ClassName: NetInfoVO
  8. * Package: com.welampiot.vo
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/7/28 - 10:02
  13. * @Version: v1.0
  14. */
  15. @Data
  16. public class NetInfoVO implements Serializable {
  17. private Integer total;
  18. private Integer page;
  19. private Integer count;
  20. private String keyword;
  21. private Integer areaId;
  22. private Integer sectionId;
  23. private List<Integer> sectionList;
  24. private List<NetInfoDTO> list;
  25. private Integer onlineCount; // 在线数
  26. private Integer welCount; // 市电数
  27. private Integer solarCount; // 太阳能数
  28. private Integer ethCount; // ETH数
  29. private Integer fourGCount; // 4G数
  30. private Integer failCount; // 故障数
  31. private static final long serialVersionUID = 1L;
  32. }