8 changed files with 47 additions and 16 deletions
@ -1,15 +1,31 @@ |
|||
package com.ccsens.tcm.bean.vo; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
@Data |
|||
public class StatisticVo { |
|||
@Data |
|||
@ApiModel("每日分析数量统计") |
|||
public static class SelCountS{ |
|||
@ApiModelProperty("新建的病例") |
|||
private Integer newNums; |
|||
@ApiModelProperty("已完成的病例") |
|||
private Integer overNums; |
|||
} |
|||
@Data |
|||
@ApiModel("病例分析") |
|||
public static class SelGroupNum{ |
|||
private Long inpatientId; |
|||
private List<SelGroupList> list; |
|||
} |
|||
@Data |
|||
@ApiModel("病例分析详细数量") |
|||
public static class SelGroupList{ |
|||
private String contents; |
|||
private Integer nums; |
|||
} |
|||
} |
|||
|
@ -1,5 +1,5 @@ |
|||
spring: |
|||
profiles: |
|||
active: dev |
|||
include: common, util-dev |
|||
active: test |
|||
include: common, util-test |
|||
|
|||
|
Loading…
Reference in new issue