liusheng
2025-04-25 c987cc764e62a9080cc784604938a4ca58b2d235
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
package com.smartor.domain;
 
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 综合问卷任务(任务)对象 svy_task
 *
 * @author ruoyi
 * @date 2024-06-12
 */
@Data
public class SvyTask extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     *
     */
    @ApiModelProperty(value = "任务ID")
    private Long taskid;
 
    /**
     * 患者服务任务id
     */
    @Excel(name = "患者服务任务id")
    @ApiModelProperty(value = "患者服务任务id")
    private Long svrtaskid;
 
    /**
     *
     */
    @Excel(name = "  ")
    @ApiModelProperty(value = "任务名称")
    private String taskName;
 
    /**
     *
     */
    @Excel(name = "  ")
    @ApiModelProperty(value = "任务描述")
    private String taskDesc;
 
    /**
     * 模板ID
     */
    @Excel(name = "  模板ID")
    @ApiModelProperty(value = "模板ID")
    private String templateid;
 
    /**
     * 模板名称
     */
    @Excel(name = "  模板名称")
    @ApiModelProperty(value = "模板名称")
    private String templatename;
 
    /**
     * 标签信息
     */
    @Excel(name = "  标签信息")
    @ApiModelProperty(value = "标签信息")
    private String labelinfo;
 
    /**
     * 状态
     */
    @Excel(name = "  状态")
    @ApiModelProperty(value = "状态")
    private Long state;
 
    /**
     * 数量
     */
    @Excel(name = "  数量")
    @ApiModelProperty(value = "数量")
    private Long count;
 
    /**
     * 执行
     */
    @Excel(name = "  执行")
    @ApiModelProperty(value = "执行")
    private Long executed;
 
    /**
     * 不执行
     */
    @Excel(name = "  不执行")
    @ApiModelProperty(value = "不执行")
    private Long unexecuted;
 
    /**
     * 是否失败
     */
    @Excel(name = "  是否失败")
    @ApiModelProperty(value = "是否失败")
    private Long fail;
 
    /**
     * 患者ID
     */
    @Excel(name = "  患者ID")
    @ApiModelProperty(value = "患者ID")
    private String patientid;
 
    /**
     * 患者名称
     */
    @Excel(name = "  患者名称")
    @ApiModelProperty(value = "患者名称")
    private String patientname;
 
    /**
     *
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "新增时间")
    private Date addtime;
 
    /**
     * 审核人id
     */
    @Excel(name = "  审核人id")
    @ApiModelProperty(value = "审核人id")
    private String checkuserid;
 
    /**
     * 审核人
     */
    @Excel(name = "  审核人")
    @ApiModelProperty(value = "审核人")
    private String checkusername;
 
    /**
     *
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "审核时间")
    private Date checktime;
 
    /**
     * 1,出院随访;2,体检通知;3,满意度调查;4,宣教;
     */
    @Excel(name = " 1,出院随访;2,体检通知;3,满意度调查;4,宣教; ")
    @ApiModelProperty(value = "出院随访;2,体检通知;3,满意度调查;4,宣教;")
    private String type;
 
    /**
     * 类型名称
     */
    @Excel(name = "  类型名称")
    @ApiModelProperty(value = "类型名称")
    private String typename;
 
    /**
     * 0.不使用播前短信 1.使用播前短信
     */
    @Excel(name = " 0.不使用播前短信 1.使用播前短信 ")
    @ApiModelProperty(value = "0.不使用播前短信 1.使用播前短信")
    private Long usebqsms;
 
    /**
     * 0.不使用播后短信 1.使用播前短信
     */
    @Excel(name = " 0.不使用播后短信 1.使用播前短信 ")
    @ApiModelProperty(value = " 0.不使用播后短信 1.使用播前短信")
    private Long usebhsms;
 
    /**
     *
     */
    @Excel(name = "  ")
    @ApiModelProperty(value = "")
    private Long usesendsms;
 
    /**
     * 部门code
     */
    @Excel(name = "  部门code")
    @ApiModelProperty(value = "部门code")
    private String deptcode;
 
    /**
     * 删除标记
     */
    @ApiModelProperty(value = "删除标记")
    private String delFlag;
 
    /**
     * 上传标记
     */
    @Excel(name = " 上传标记 ")
    @ApiModelProperty(value = "上传标记")
    private Long isupload;
 
    /**
     * 上传时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd")
    @ApiModelProperty(value = "上传时间")
    private Date uploadTime;
 
    /**
     * 机构ID
     */
    @Excel(name = " 机构ID ")
    @ApiModelProperty(value = "机构ID")
    private String orgid;
 
    /**
     * 父ID
     */
    @Excel(name = "父ID")
    @ApiModelProperty(value = "父ID")
    private Long pid;
 
    /**
     * GUID
     */
    @Excel(name = "GUID")
    @ApiModelProperty(value = "GUID")
    private String guid;
 
    /**
     * 任务形式 1,多媒体   2,纸质  3,电话  4,短信  5.微信公众号 6.微信小程序  7.支付宝  8.智能小程序  9.钉钉
     */
    @Excel(name = " 任务形式 1,多媒体   2,纸质  3,电话  4,短信  5.微信公众号 6.微信小程序  7.支付宝  8.智能小程序  9.钉钉")
    @ApiModelProperty(value = "任务形式 1,多媒体   2,纸质  3,电话  4,短信  5.微信公众号 6.微信小程序  7.支付宝  8.智能小程序  9.钉钉")
    private String preachform;
 
    /**
     * 是否发送 : 0 暂停发送  1 定时发送  2 立即发送
     */
    @Excel(name = "是否发送 : 0 暂停发送  1 定时发送  2 立即发送  ")
    @ApiModelProperty(value = "是否发送 : 0 暂停发送  1 定时发送  2 立即发送")
    private Long sendType;
 
    /**
     * 发送状态: 1新建 2执行中 3暂停 4终止 5完成
     */
    @Excel(name = "发送状态: 1新建 2执行中 3暂停 4终止 5完成")
    @ApiModelProperty(value = "发送状态: 1新建 2执行中 3暂停 4终止 5完成")
    private String sendState;
 
    /**
     * 文本变量参数
     */
    @Excel(name = "文本变量参数")
    @ApiModelProperty(value = "文本变量参数")
    private String param;
 
    /**
     * 文本变量参数
     */
    @Excel(name = "文本变量参数")
    @ApiModelProperty(value = "文本变量参数")
    private String textParam;
 
    /**
     * 暂停状态 : 状态如果发生修改,值就加1
     */
    @Excel(name = "暂停状态 : 状态如果发生修改,值就加1")
    @ApiModelProperty(value = "暂停状态 : 状态如果发生修改,值就加1")
    private Long stopState = 0L;
 
    @ApiModelProperty(value = "上午时间")
    private String showTimeMorn;
 
    @ApiModelProperty(value = "中午时间")
    private String showTimeNoon;
 
    @ApiModelProperty(value = "晚午时间")
    private String showTimeNight;
 
    @ApiModelProperty(value = "展示日期")
    private String showDate;
 
    /**
     * 类型名称
     */
    @Excel(name = "发送时间段")
    @ApiModelProperty(value = "发送时间段")
    private String sendTimeSlot;
 
    /**
     * 模板库模版名称
     */
    @Excel(name = "模板库模版名称")
    private String libtemplatename;
 
    /**
     * 模板库模版ID
     */
    @Excel(name = "模板库模版ID")
    private String libtemplateid;
 
    /**
     * pageNum
     */
    @ApiModelProperty("pageNum")
    private Integer pageNum;
 
    /**
     * pageSize
     */
    @ApiModelProperty("pageSize")
    private Integer pageSize;
 
}