陈昶聿
4 天以前 3d7ce987068602fd6d0d28f636e2be16846d5df7
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package com.smartor.domain;
 
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 疾病获取患者信息
 *
 * @author ruoyi
 * @date 2024-12-11
 */
@ApiModel(value = "ServiceSubtaskDiagname", description = "")
@Data
public class ServiceSubtaskDiagname implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Excel(name = "任务名称")
    @ApiModelProperty(value = "任务名称")
    private String taskName;
 
    // @Excel(name = " 发送状态 1 被领取(在任务中是新建,在服务中是被领取)  2 待发送  3 已发送  4 不执行  5 发送失败 6 已完成\") ")
    @Excel(name = "任务状态", readConverterExp = "1=被领取,2=待发送,3=已发送,4=不执行,5=发送失败,6=已完成")
    @ApiModelProperty(value = "任务状态")
    private Long sendstate;
 
    @Excel(name = "姓名")
    @ApiModelProperty(value = "姓名")
    private String sendname;
 
    @Excel(name = "诊断名称")
    @ApiModelProperty(value = "诊断名称")
    private String leavediagname;
 
    @Excel(name = "处理意见")
    @ApiModelProperty(value = "处理意见")
    private String suggest;
 
    @Excel(name = "随访人员")
    @ApiModelProperty(value = "随访人员")
    private String operator;
 
    @Excel(name = "随访完成日期")
    @ApiModelProperty(value = "随访完成日期")
    private Date finishtime;
 
    @Excel(name = "应随访日期")
    @ApiModelProperty(value = "应随访日期")
    private Date longSendTime;
 
    @Excel(name = "出院日期")
    @ApiModelProperty(value = "出院日期")
    private Date endtime;
 
    @Excel(name = "出院天数")
    @ApiModelProperty(value = "出院天数")
    private Integer endDay;
 
    @Excel(name = "身份证号码")
    @ApiModelProperty(value = "身份证号码")
    private String sfzh;
 
    @Excel(name = "联系电话")
    @ApiModelProperty(value = "联系电话")
    private String phone;
 
    @Excel(name = "责任护士")
    @ApiModelProperty("责任护士")
    private String nurseName;
 
    @Excel(name = "主治医生")
    @ApiModelProperty("主治医生")
    private String drname;
 
    @Excel(name = "科室")
    @ApiModelProperty(value = "科室")
    private String deptname;
 
    @Excel(name = "病区")
    @ApiModelProperty(value = "病区")
    private String leavehospitaldistrictname;
 
    @Excel(name = "出院随访模板名称")
    @ApiModelProperty(value = "出院随访模板名称")
    private String templatename;
 
    @Excel(name = "任务执行方式", readConverterExp = "1=人工,2=纸质,3=电话,4=短信,5=微信公众号,6=微信小程序,7=支付宝,8=智能小程序,9=钉钉")
    @ApiModelProperty(value = "任务执行方式")
    private String preachform;
 
    @Excel(name = "任务结果说明", readConverterExp = "0=允许,1=禁止")
    @ApiModelProperty(value = "任务结果说明")
    private String result;
 
 
}