LampPoleVO.java 724 B

12345678910111213141516171819202122232425262728
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.LampInfoDTO;
  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 devType;
  11. private Integer devId;
  12. private List<Map> lightDevList;
  13. private List<Map> benchDevList;
  14. private List<Map> solarDevList;
  15. private Integer id;
  16. private String name;
  17. private String number;
  18. private Integer areaId;
  19. private Integer sectionId;
  20. private Integer height;
  21. private String install_date;
  22. private String expiration_date;
  23. private WifiVO cloud_box;
  24. private List<Map> videoList;
  25. }