NoiseDevInfoDTO.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.welampiot.dto;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. import java.util.List;
  5. /**
  6. * ClassName: NoiseDevInfoDTO
  7. * Package: com.welampiot.dto
  8. * Description:
  9. *
  10. * @Author: zhj_Start
  11. * @Create: 2023/4/24 - 9:56
  12. * @Version: v1.0
  13. */
  14. @Data
  15. public class NoiseDevInfoDTO implements Serializable {
  16. /** 主键 **/
  17. private Integer id;
  18. /** 设备名称 **/
  19. private String name;
  20. /** 设备地址 **/
  21. private String address;
  22. /** 在线状态(0 离线,1 在线)**/
  23. private Integer online;
  24. /** 灯杆id **/
  25. private Integer lampPoleId;
  26. /** 噪声 **/
  27. private Float noise;
  28. /** 数据更新时间 **/
  29. private String updateTime;
  30. /** 白天告警值 **/
  31. private Float warringValue1;
  32. /** 晚上告警值 **/
  33. private Float warringValue2;
  34. /** 串口号(0 3号串口,1 2号串口,2 1号串口)**/
  35. private Integer serialPort;
  36. /** 安装时间 **/
  37. private String installDate;
  38. /** 过期时间 **/
  39. private String expirationDate;
  40. /** 网关型号(0 G100,1 G200,2 G40,3 G300) **/
  41. private Integer model;
  42. private String lampPoleName;
  43. private Integer timezone;
  44. private Integer status;
  45. private Integer page;
  46. private Integer count;
  47. private String keyword;
  48. private Integer sectionId;
  49. private String devType;
  50. private List<Integer> sectionList;
  51. private static final long serialVersionUID = 1L;
  52. }