ApCountVO.java 278 B

12345678910111213141516171819
  1. package com.bizmatics.service.vo;
  2. import lombok.Data;
  3. /**
  4. * @author yq
  5. * @date 2021/7/7 13:53
  6. */
  7. @Data
  8. public class ApCountVO {
  9. /**
  10. * 电力告警总数
  11. */
  12. private Integer count;
  13. /**
  14. * 未处理告警总数
  15. */
  16. private Integer unCount;
  17. }