liusheng
23 小时以前 459aa78c84cf552ebea6ef056d978c2531d71ac8
smartor/src/main/java/com/smartor/domain/PatTaskRelevance.java
@@ -1,5 +1,6 @@
package com.smartor.domain;
import com.alibaba.fastjson.JSONObject;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
@@ -157,7 +158,14 @@
     */
    @Excel(name = "疾病名称")
    @ApiModelProperty("疾病名称")
    private String icdName;
    private String leavediagname;
    /**
     * 疾病名称
     */
    @Excel(name = "疾病名称")
    @ApiModelProperty("疾病名称")
    private String leaveicd10code;
    /**
     * 手机号
@@ -207,10 +215,10 @@
    /**
     * 发送时间
     */
    @Excel(name = "就诊时间")
    @Excel(name = "发送时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty("就诊时间")
    private Date visitTime;
    @ApiModelProperty("发送时间")
    private Date visittime;
    /**
@@ -226,6 +234,13 @@
    @Excel(name = "就诊类型(1门诊  2出院)")
    @ApiModelProperty("就诊类型(1门诊  2出院)")
    private String hospType;
    /**
     * 就诊类型(1门诊  2出院)
     */
    @Excel(name = "就诊id(1门诊  2出院)")
    @ApiModelProperty("就诊id(1门诊  2出院)")
    private Long hospid;
    /**
@@ -305,4 +320,20 @@
    @Excel(name = " 长期任务,给患者发送的时间")
    @ApiModelProperty(value = "长期任务,给患者发送的时间")
    private Date longSendTime;
    @ApiModelProperty(value = "继续标识")
    private Integer continueFlag;
    @ApiModelProperty(value = "继续时间现在")
    private Date continueTimeNow;
    @ApiModelProperty(value = "继续内容")
    private JSONObject continueContent;
    @ApiModelProperty(value = "继续次数")
    private Integer continueCount;
    @ApiModelProperty(value = "继续时间下次")
    private Date continueTimeNext;
}