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 = "随访完成日期",dateFormat = "yyyy-MM-dd")
|
@ApiModelProperty(value = "随访完成日期")
|
private Date finishtime;
|
|
@Excel(name = "应随访日期",dateFormat = "yyyy-MM-dd")
|
@ApiModelProperty(value = "应随访日期")
|
private Date longSendTime;
|
|
@Excel(name = "出院日期",dateFormat = "yyyy-MM-dd")
|
@ApiModelProperty(value = "出院日期")
|
private Date endtime;
|
|
@Excel(name = "出院天数", suffix = "天")
|
@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;
|
|
|
}
|