| | |
| | | package com.ycl.dto.statistics; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | |
| | | @Data |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | @Builder |
| | | public class UnlawfulDto { |
| | | |
| | | /** |
| | | * 类型名称 |
| | | */ |
| | | @ExcelIgnore |
| | | private Long id; |
| | | /** |
| | | * 类型名称 |
| | | */ |
| | | @ExcelProperty(value = "类型名称", index = 0) |
| | | private String name; |
| | | |
| | | /** |
| | | * 事件总数 |
| | | */ |
| | | @ExcelProperty(value = "事件总数", index = 1) |
| | | private Integer count; |
| | | |
| | | /** |
| | | * 占比 |
| | | */ |
| | | private Double ratio; |
| | | @ExcelProperty(value = "占比", index = 2) |
| | | private String ratio; |
| | | |
| | | /** |
| | | * 立案 |
| | | */ |
| | | @ExcelProperty(value = "立案", index = 3) |
| | | private Integer register; |
| | | |
| | | /** |
| | | * 暂不立案 |
| | | */ |
| | | @ExcelProperty(value = "暂不立案", index = 4) |
| | | private Integer notRegister; |
| | | |
| | | /** |
| | | * 结案 |
| | | */ |
| | | @ExcelProperty(value = "结案", index = 5) |
| | | private Integer closing; |
| | | |
| | | /** |
| | | * 再学习 |
| | | */ |
| | | @ExcelProperty(value = "再学习", index = 6) |
| | | private Integer relearn; |
| | | |
| | | /** |
| | | * 已审核 |
| | | */ |
| | | @ExcelProperty(value = "已审核", index = 7) |
| | | private Integer checked; |
| | | |
| | | /** |
| | | * 审核率 |
| | | */ |
| | | private Double checkedRatio; |
| | | @ExcelProperty(value = "审核率", index = 8) |
| | | private String checkedRatio; |
| | | |
| | | /** |
| | | * 立案率 |
| | | */ |
| | | private Double registerRatio; |
| | | @ExcelProperty(value = "立案率", index = 9) |
| | | private String registerRatio; |
| | | |
| | | /** |
| | | * 准确率 |
| | | */ |
| | | private Double accuracyRatio; |
| | | @ExcelProperty(value = "准确率", index = 10) |
| | | private String accuracyRatio; |
| | | } |