zhaowenxuan
7 天以前 0892d843cd394f383ff50f480f7f22f2ec3829bc
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
48
49
50
51
52
package com.ltkj.hosp.vodomain;
 
import com.ltkj.common.annotation.Excel;
import com.ltkj.common.excelConfig.ExcelExport;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Author: 西安路泰科技有限公司/赵佳豪
 * @Date: 2022/12/14 15:13
 */
 
@Data
@ApiModel(value = "体检科室工作量统计实体类")
public class TjDeptCountVo {
 
    @ApiModelProperty(value = "科室")
    @Excel(name = "科室")
    @ExcelExport(value = "科室")
    private String deptName;
 
    @ApiModelProperty(value = "医师")
    @Excel(name = "医师")
    @ExcelExport(value = "医师")
    private String doctorName;
 
    @ApiModelProperty(value = "体检登记数")
    @Excel(name = "体检登记数")
    @ExcelExport(value = "体检登记数")
    private Integer tjCount;
 
    @ApiModelProperty(value = "体检完成数")
    @Excel(name = "体检完成数")
    @ExcelExport(value = "体检完成数")
    private Integer tjFinishCount;
 
    @ApiModelProperty(value = "体检完成率")
    @Excel(name = "体检完成率")
    @ExcelExport(value = "体检完成率")
    private String tjFinishRate;
 
    @ApiModelProperty(value = "出报告数")
    @Excel(name = "出报告数")
    @ExcelExport(value = "出报告数")
    private Integer reportCount;
 
    @ApiModelProperty(value = "出报告率")
    @Excel(name = "出报告率")
    @ExcelExport(value = "出报告率")
    private String reportRate;
}