ManholeVO.java 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.ManholeDTO;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * ClassName: ManholeVO
  8. * Package: com.welampiot.vo
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/4/10 - 10:36
  13. * @Version: v1.0
  14. */
  15. @Data
  16. public class ManholeVO implements Serializable {
  17. /** 设备总数 **/
  18. private Integer total;
  19. /** 正常设备数 **/
  20. private Integer normalCount;
  21. /** 在线设备数 **/
  22. private Integer onlineCount;
  23. /** 报警数 **/
  24. private Integer alarmCount;
  25. /** 故障数 **/
  26. private Integer faultCount;
  27. /** 已完成故障数 **/
  28. private Integer finishFaultCount;
  29. /** 处理中故障数 **/
  30. private Integer ingFaultCount;
  31. /** 未指派故障数 **/
  32. private Integer notFaultCount;
  33. /** 新建设备数 **/
  34. private Integer newCount;
  35. private String path;
  36. private List<ManholeDTO> list;
  37. private static final long serialVersionUID = 1L;
  38. }