陈昶聿
21 小时以前 c0ee7d43fdd2aed5e22bfbf90eb3eb1377bf5041
smartor/src/main/java/com/smartor/domain/ServiceSubtaskCountReq.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 io.swagger.annotations.ApiModel;
@@ -30,11 +31,11 @@
    @ApiModelProperty(value = "异常预警:0绿色;1红色;2黄色")
    private Integer isabnormal;
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    @ApiModelProperty(value = "开始时间")
    private Date startTime;
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    @ApiModelProperty(value = "结束时间")
    private Date endTime;
@@ -50,7 +51,7 @@
    @ApiModelProperty(value = "子任务Id集合")
    private List<Long> subTaskIds;
    @ApiModelProperty(value = "科室病区")
    @ApiModelProperty(value = "科室病区:1,病区统计  2,科室统计")
    private Integer statisticaltype;
    private String visitDeptCode;
@@ -74,6 +75,23 @@
    @ApiModelProperty(value = "查询参数对应值 joyCount-满意度统计; returnVisitCount-复诊统计")
    private String configValue;
    @ApiModelProperty(value = "继续标识:1 没  2有")
    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;
    /**
     * 机构编码
     */
@@ -93,6 +111,30 @@
    private String scriptids;
    /**
     * 分组类型 drCode, deptCode, leaveHospitalDistrictCode
     */
    @ApiModelProperty(value = "分组类型")
    private String groupKeyType;
    /**
     * 分组key
     */
    @ApiModelProperty(value = "分组key")
    private String groupKey;
    /**
     * 随访统计方式 1-默认统计方式 2-统计时算上不发送的
     */
    @ApiModelProperty(value = "统计方式")
    private String followUpCountStyle;
    /**
     * 分组code集合
     */
    @ApiModelProperty(value = "分组code集合")
    private List<String> groupKeyList;
    /**
     * pageNum
     */
    @ApiModelProperty("pageNum")
@@ -103,4 +145,4 @@
     */
    @ApiModelProperty("pageSize")
    private Integer pageSize;
}
}