renkang
2025-01-09 05ea8364f36fc6b385e97f4aecc9deb7d304f0b0
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
29
30
package com.doumee.dao.business.vo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2025/1/8 15:32
 */
@Data
public class YwWorkorderDataVO {
 
 
    @ApiModelProperty(value = "待指派数量", example = "1")
    private Integer waitAssignAmount;
 
    @ApiModelProperty(value = "待处理数量", example = "1")
    private Integer waitDealAmount;
 
    @ApiModelProperty(value = "本月总数", example = "1")
    private Integer monthAmount;
 
    @ApiModelProperty(value = "累计总数", example = "1")
    private Integer amount;
 
}