DeviceCountVO.java 763 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.bizmatics.service.vo;
  2. import lombok.Data;
  3. import org.bouncycastle.asn1.cmc.LraPopWitness;
  4. /**
  5. * @author yq
  6. * @date 2021/7/7 15:10
  7. */
  8. @Data
  9. public class DeviceCountVO {
  10. /**
  11. * 正常
  12. */
  13. private Integer normalCount;
  14. /**
  15. * 离线
  16. */
  17. private Integer offLineCount;
  18. /**
  19. * 故障
  20. */
  21. private Integer faultCount;
  22. /**
  23. * 告警
  24. */
  25. private Integer deviceCount;
  26. /**
  27. * 站点数量/设备数量
  28. */
  29. private Integer count;
  30. /**
  31. * 设备数量
  32. */
  33. private Integer siteDeviceCount;
  34. /**
  35. * 用电量
  36. */
  37. private Integer epCount;
  38. /**
  39. * 视频量
  40. */
  41. private Integer videoCount;
  42. }