1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.panzhihua.common.model.vos.sanshuo;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| @Data
| @ApiModel("事件级别占比统计")
| public class EventRateVO {
| @ApiModelProperty("级别")
| private String name;
| @ApiModelProperty("占比")
| private BigDecimal rate;
| @ApiModelProperty("数量")
| private Integer count;
| private Integer currentProcessType;
| private Integer type;
| }
|
|