123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.welampiot.dto;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.Date;
- import java.util.List;
- /**
- * ClassName: ElectricBoxDTO
- * Package: com.welampiot.dto
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/3/22 - 14:46
- * @Version: v1.0
- */
- @Data
- public class ElectricBoxDTO implements Serializable {
- /** 主键 **/
- private Integer id;
- /** 街道/路段id **/
- private Integer sectionId;
- /** 区/县id **/
- private Integer areaId;
- /** 设备名称 **/
- private String name;
- /** 设备SN码 **/
- private String address;
- /** 更新时间 **/
- private Date updateTime;
- /** 控制类型(0 手动,1 策略) **/
- private Integer controlType;
- /** 策略id **/
- private Integer policyId;
- /** 经度 **/
- private Double longitude;
- /** 纬度 **/
- private Double latitude;
- /** 策略数量 **/
- private Integer cid;
- /** 配电箱绑定的图片 **/
- private String image;
- /** 安装时间 **/
- private String installDate;
- /** 过期时间 **/
- private String expirationDate;
- /** 空开数量 **/
- private Integer airCount;
- /** 空开的在线数量 **/
- private Integer onlineCount;
- /** 电箱的在线状态(0 离线,1 在线) **/
- private Integer online;
- /** 页数 **/
- private Integer page;
- /** 单页显示数量 **/
- private Integer count;
- /** 关键字搜索(可搜索设备名称和设备地址) **/
- private String keyword;
- /** 在线状态筛选(0全部,1在线,2离线)**/
- private Integer status;
- /** 所有路段的id **/
- private List sectionList;
- private static final long serialVersionUID = 1L;
- }
|