12345678910111213141516171819202122232425262728 |
- package com.welampiot.vo;
- import com.welampiot.dto.LampInfoDTO;
- 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 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 install_date;
- private String expiration_date;
- private WifiVO cloud_box;
- private List<Map> videoList;
- }
|