| | |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty(value = "结束时间") |
| | | private Date endTime; |
| | | |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "出院开始时间") |
| | | private Date hospitalStartTime; |
| | | |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ApiModelProperty(value = "出院结束时间") |
| | | private Date hospitalEndTime; |
| | | |
| | | @ApiModelProperty(value = "服务类型") |
| | | private List<Long> serviceType; |
| | | |
| | |
| | | @ApiModelProperty(value = "子任务Id集合") |
| | | private List<Long> subTaskIds; |
| | | |
| | | @ApiModelProperty(value = "科室病区:1,病区统计 2,科室统计") |
| | | @ApiModelProperty(value = "科室病区:1,病区统计 2,科室统计 3. 病种统计") |
| | | private Integer statisticaltype; |
| | | |
| | | private String visitDeptCode; |
| | |
| | | @ApiModelProperty(value = "超链接统计列表类型") |
| | | private String hyperLinkInfoType; |
| | | |
| | | @ApiModelProperty(value = "任务ID", required = true) |
| | | private Long taskId; |
| | | |
| | | @ApiModelProperty(value = "taskIds集合") |
| | | private List<Long> taskIds; |
| | | |
| | | @ApiModelProperty(value = "任务名称") |
| | | private String taskName; |
| | | |
| | | @ApiModelProperty(value = "taskNamee集合") |
| | | private List<String> taskNames; |
| | | |
| | | @ApiModelProperty(value = "疾病病种") |
| | | private String diagType; |
| | | |
| | | @ApiModelProperty(value = "diagType集合") |
| | | private List<String> diagTypes; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |