123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.welampiot.vo;
- import com.welampiot.dto.LampPoleDTO;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- import java.util.Map;
- @Data
- public class LampPoleVO implements Serializable {
- private List sectionList; // 路段筛选
- private Integer total;
- private Integer devType;
- private Integer devId;
- private List<Map> lightDevList;
- private List<Map> benchDevList;
- private List<Map> solarDevList;
- private Integer id;
- private String name;
- private String number;
- private Integer areaId;
- private Integer sectionId;
- private Integer height;
- private String installDate;
- private String expirationDate;
- private WifiVO cloud_box;
- private List<Map> videoList;
- private String keyword; // 关键字搜索
- private Integer version;
- private Integer isInspec;
- private Integer limit;
- private Integer offset;
- private Map cloudBox; // 云盒
- private Integer createId;
- private Float longitude;
- private Float latitude;
- private Integer deviceCount; // 设备总数
- private Integer runCount; // 运行数
- private Integer faultCount; // 故障数
- private Integer newCount; // 近期创建数
- private Integer disableCount; // 禁用数
- private Integer dir;
- private String iconInfo;
- private Map weatherDev;
- private List<LampPoleDTO> list;
- private LampPoleDTO lampPoleInfo;
- private Integer type; // 灯杆绑定的设备类型
- private Integer lampId; // 灯控id
- private List<LampPoleDTO> lampPoleDevList;
- }
|