RepairSummarizingVo.java 635 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.repair.model.vo;
  2. import lombok.Data;
  3. @Data
  4. public class RepairSummarizingVo {
  5. // 待审核
  6. private Integer checkCount;
  7. // 待接单
  8. private Integer receivingCount;
  9. // 待处理
  10. private Integer disposeCount;
  11. // 待确认
  12. private Integer affirmCount;
  13. // 维修中
  14. private Integer maintainCount;
  15. // 已完成
  16. private Integer accomplishCount;
  17. // 已取消
  18. private Integer cancelCount;
  19. // 已关单
  20. private Integer shutCount;
  21. // 总单数
  22. private Integer totalCount;
  23. // 时间
  24. private String dateName;
  25. }