| | |
| | | */ |
| | | @ApiModel(description = "驾驶舱数据-执法事件VO层") |
| | | public class EnforcementEventsVO { |
| | | @ApiModel(description = "执法事件统计") |
| | | @Data |
| | | public static class StatisticsEventVO { |
| | | @ApiModelProperty(value = "数量") |
| | | private Integer count; |
| | | |
| | | @ApiModelProperty(value = "比例") |
| | | private BigDecimal ratio; |
| | | |
| | | @ApiModelProperty(value = "上升下降") |
| | | private Boolean up; |
| | | } |
| | | |
| | | @Data |
| | | @ApiModel(description = "事件类型/事件来源") |
| | |
| | | private Integer identification; |
| | | @ApiModelProperty(value = "具体事件的数据信息") |
| | | private List<EventVO> event; |
| | | @ApiModelProperty(value = "具体事件的数据信息") |
| | | private Long total; |
| | | } |
| | | } |