|
|
@ -1,9 +1,11 @@ |
|
|
|
package com.ccsens.tcm.bean.vo; |
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
@Data |
|
|
@ -12,9 +14,18 @@ public class StatisticVo { |
|
|
|
@ApiModel("每日分析数量统计") |
|
|
|
public static class SelCountS{ |
|
|
|
@ApiModelProperty("新建的病例") |
|
|
|
private Integer newNums; |
|
|
|
private List<StatisticVo.Shuliang> newNums; |
|
|
|
@ApiModelProperty("已完成的病例") |
|
|
|
private Integer overNums; |
|
|
|
private List<StatisticVo.Shuliang> overNums; |
|
|
|
} |
|
|
|
@Data |
|
|
|
@ApiModel("每日统计的数量") |
|
|
|
public static class Shuliang{ |
|
|
|
@ApiModelProperty("时间") |
|
|
|
@JsonFormat(pattern="yyyy-MM-dd") |
|
|
|
private Date shijian; |
|
|
|
@ApiModelProperty("数量") |
|
|
|
private Integer nums; |
|
|
|
} |
|
|
|
@Data |
|
|
|
@ApiModel("病例分析") |
|
|
|