CableVO.java 884 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.CableDTO;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * ClassName: CableVO
  8. * Package: com.welampiot.vo
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/4/21 - 11:21
  13. * @Version: v1.0
  14. */
  15. @Data
  16. public class CableVO implements Serializable {
  17. private Integer total;//设备总数
  18. private Integer onlineCount;//在线数
  19. private Integer tempAlarmCount;//高温告警数
  20. private Integer waterAlarmCount;//水浸告警数
  21. private Integer manholeAlarmCount;//井盖位移告警数
  22. private Integer ch4AlarmCount;//ch4告警数
  23. private Integer co2AlarmCount;//co2告警数
  24. private Integer h2sAlarmCount;//h2s告警数
  25. private Integer o2AlarmCount;//o2告警数
  26. private List<CableDTO> list;
  27. private static final long serialVersionUID = 1L;
  28. }