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;
|
}
|
}
|