package com.smartor.domain;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.annotation.Excel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* 各科室完成量统计结果
|
*
|
* @author ruoyi
|
* @date 2024-02-02
|
*/
|
@ApiModel(value = "ServiceSubtaskCount", description = "各科室完成量统计结果")
|
@Data
|
public class ServiceSubtaskCount {
|
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;
|
|
public ServiceSubtaskCount(String month, Long serviceType, Long count) {
|
this.serviceType = serviceType;
|
this.month = month;
|
this.count = count;
|
}
|
}
|