LampPoleVO.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.LampPoleDTO;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. import java.util.Map;
  7. @Data
  8. public class LampPoleVO implements Serializable {
  9. private List sectionList; // 路段筛选
  10. private Integer total;
  11. private Integer devType;
  12. private Integer devId;
  13. private List<Map> lightDevList;
  14. private List<Map> benchDevList;
  15. private List<Map> solarDevList;
  16. private Integer id;
  17. private String name;
  18. private String number;
  19. private Integer areaId;
  20. private Integer sectionId;
  21. private Integer height;
  22. private String installDate;
  23. private String expirationDate;
  24. private WifiVO cloud_box;
  25. private List<Map> videoList;
  26. private String keyword; // 关键字搜索
  27. private Integer version;
  28. private Integer isInspec;
  29. private Integer limit;
  30. private Integer offset;
  31. private Map cloudBox; // 云盒
  32. private Integer createId;
  33. private Float longitude;
  34. private Float latitude;
  35. private Integer deviceCount; // 设备总数
  36. private Integer runCount; // 运行数
  37. private Integer faultCount; // 故障数
  38. private Integer newCount; // 近期创建数
  39. private Integer disableCount; // 禁用数
  40. private Integer dir;
  41. private String iconInfo;
  42. private Map weatherDev;
  43. private List<LampPoleDTO> list;
  44. private LampPoleDTO lampPoleInfo;
  45. private Integer type; // 灯杆绑定的设备类型
  46. private Integer lampId; // 灯控id
  47. private List<LampPoleDTO> lampPoleDevList;
  48. }