liusheng
5 天以前 9569ab058ad88dd61541415ba0179e8fb6c6f6d3
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.smartor.domain;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 各科室完成量统计结果
 *
 * @author ruoyi
 * @date 2024-02-02
 */
@ApiModel(value = "ServiceSubtaskCount", description = "各科室完成量统计结果")
@Data
public class ServiceSubtaskCategoryCount {
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "子任务ID")
    private Long subTaskId;
 
    @ApiModelProperty(value = "服务类型")
    private Long serviceType;
 
    @ApiModelProperty(value = "年月")
    private String month;
 
    @ApiModelProperty(value = "数量")
    private Long count;
 
    @ApiModelProperty(value = "填写数量")
    private Integer completedCount;
 
    @ApiModelProperty(value = "所有数量")
    private Integer allCount;
 
    @ApiModelProperty(value = "填写比例")
    private String completedPercent;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    public ServiceSubtaskCategoryCount(String month, Long serviceType, Long count) {
        this.serviceType = serviceType;
        this.month = month;
        this.count = count;
    }
}