xiangpei
2024-09-10 f8889f7364adae89e45a5ec3fcf4b38e430cf389
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.ycl.platform.domain.vo.screen;
 
import lombok.Data;
 
/**
 * @author gonghl
 * @since 2024/8/7 下午 4:14
 */
 
@Data
public class WorkOrderTotalVO {
 
    /**
     * 工单总数
     */
    private Integer totalNum;
 
    /**
     * 已处理工单数
     */
    private Integer doneNum;
 
    /**
     * 未处理工单数
     */
    private Integer todoNum;
 
}