| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.repair.model.vo;
- import lombok.Data;
- @Data
- public class RepairSummarizingVo {
- // 待审核
- private Integer checkCount;
- // 待接单
- private Integer receivingCount;
- // 待处理
- private Integer disposeCount;
- // 待确认
- private Integer affirmCount;
- // 维修中
- private Integer maintainCount;
- // 已完成
- private Integer accomplishCount;
- // 已取消
- private Integer cancelCount;
- // 已关单
- private Integer shutCount;
- // 总单数
- private Integer totalCount;
- // 时间
- private String dateName;
- }
|