liusheng
12 小时以前 e180e3a496d6f29d3a3b34016400de9d997c6bd9
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;
@@ -143,7 +144,7 @@
     */
    @Excel(name = "科室编码")
    @ApiModelProperty("科室编码")
    private String deptCode;
    private String deptcode;
    /**
     * 科室
@@ -214,10 +215,10 @@
    /**
     * 发送时间
     */
    @Excel(name = "就诊时间")
    @Excel(name = "发送时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty("就诊时间")
    private Date visitTime;
    @ApiModelProperty("发送时间")
    private Date visittime;
    /**
@@ -233,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;
    /**
@@ -312,4 +320,22 @@
    @Excel(name = " 长期任务,给患者发送的时间")
    @ApiModelProperty(value = "长期任务,给患者发送的时间")
    private Date longSendTime;
    @ApiModelProperty(value = "继续标识")
    private Integer continueFlag;
    @ApiModelProperty(value = "继续时间现在")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date continueTimeNow;
    @ApiModelProperty(value = "继续内容")
    private JSONObject continueContent;
    @ApiModelProperty(value = "继续次数")
    private Integer continueCount;
    @ApiModelProperty(value = "继续时间下次")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date continueTimeNext;
}