ElectricBoxDTO.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package com.welampiot.dto;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. import java.util.List;
  6. /**
  7. * ClassName: ElectricBoxDTO
  8. * Package: com.welampiot.dto
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/3/22 - 14:46
  13. * @Version: v1.0
  14. */
  15. @Data
  16. public class ElectricBoxDTO implements Serializable {
  17. /** 主键 **/
  18. private Integer id;
  19. /** 街道/路段id **/
  20. private Integer sectionId;
  21. /** 区/县id **/
  22. private Integer areaId;
  23. /** 设备名称 **/
  24. private String name;
  25. /** 设备SN码 **/
  26. private String address;
  27. /** 更新时间 **/
  28. private Date updateTime;
  29. /** 控制类型(0 手动,1 策略) **/
  30. private Integer controlType;
  31. /** 策略id **/
  32. private Integer policyId;
  33. /** 经度 **/
  34. private Double longitude;
  35. /** 纬度 **/
  36. private Double latitude;
  37. /** 策略数量 **/
  38. private Integer cid;
  39. /** 配电箱绑定的图片 **/
  40. private String image;
  41. /** 安装时间 **/
  42. private String installDate;
  43. /** 过期时间 **/
  44. private String expirationDate;
  45. /** 空开数量 **/
  46. private Integer airCount;
  47. /** 空开的在线数量 **/
  48. private Integer onlineCount;
  49. /** 电箱的在线状态(0 离线,1 在线) **/
  50. private Integer online;
  51. /** 页数 **/
  52. private Integer page;
  53. /** 单页显示数量 **/
  54. private Integer count;
  55. /** 关键字搜索(可搜索设备名称和设备地址) **/
  56. private String keyword;
  57. /** 在线状态筛选(0全部,1在线,2离线)**/
  58. private Integer status;
  59. /** 所有路段的id **/
  60. private List sectionList;
  61. private static final long serialVersionUID = 1L;
  62. }