| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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;
- public Integer getTotalCount() {
- return checkCount + receivingCount + disposeCount + affirmCount + maintainCount + accomplishCount + cancelCount + shutCount+offlineCount;
- }
- public void setTotalCount(Integer totalCount) {
- this.totalCount = totalCount;
- }
- // 时间
- private String dateName;
- /**
- * 转线下
- */
- private Integer offlineCount;
- }
|