| | |
| | | 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 = 2) |
| | | private Double ratio; |
| | | private String ratio; |
| | | |
| | | /** |
| | | * 立案 |
| | |
| | | * 审核率 |
| | | */ |
| | | @ExcelProperty(value = "审核率", index = 8) |
| | | private Double checkedRatio; |
| | | private String checkedRatio; |
| | | |
| | | /** |
| | | * 立案率 |
| | | */ |
| | | @ExcelProperty(value = "立案率", index = 9) |
| | | private Double registerRatio; |
| | | private String registerRatio; |
| | | |
| | | /** |
| | | * 准确率 |
| | | */ |
| | | @ExcelProperty(value = "准确率", index = 10) |
| | | private Double accuracyRatio; |
| | | private String accuracyRatio; |
| | | } |