liusheng
2 天以前 1e1814178edf84090b28492bbad340ab13e5c169
smartor/src/main/java/com/smartor/domain/ServiceSubtask.java
@@ -76,12 +76,14 @@
     * 出院时间
     */
    @ApiModelProperty(value = "出院时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date endtime;
    /**
     * 入院时间
     */
    @ApiModelProperty(value = "入院时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date starttime;
    /**
@@ -573,6 +575,12 @@
    private Integer visitCount;
    /**
     * 复诊通知:0已通知    1未通知
     */
    @ApiModelProperty(value = "复诊通知:0已通知    1未通知")
    private Integer visitNotice;
    /**
     * 是否在次随访:1否    2是
     */
    @ApiModelProperty(value = "是否在次随访:1是    2否")
@@ -585,6 +593,7 @@
    private Integer upid;
    @ApiModelProperty(value = "随访时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date visitTime;
    /**
@@ -592,7 +601,6 @@
     */
    @ApiModelProperty(value = "随访方式")
    private String visitType;
    @ApiModelProperty(value = "随访部门编码")
@@ -603,4 +611,18 @@
    @ApiModelProperty(value = "随访部门编码集合")
    private List<String> visitDeptCodes;
    /**
     * pageNum
     */
    @Excel(name = "pn")
    @ApiModelProperty(value = "pn")
    private Integer pn;
    /**
     * pageSize
     */
    @Excel(name = "ps")
    @ApiModelProperty(value = "ps")
    private Integer ps;
}