zhanghua
2023-01-11 b2dc3088b63fae558c80d91f16b146cf26eb6809
ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulDto.java
@@ -1,5 +1,6 @@
package com.ycl.dto.statistics;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@@ -20,55 +21,66 @@
    /**
     * 类型名称
     */
    @ExcelProperty(value = "类型名称", index = 0)
    private String name;
    /**
     * 事件总数
     */
    @ExcelProperty(value = "事件总数", index = 1)
    private Integer count;
    /**
     * 占比
     */
    @ExcelProperty(value = "占比", index = 2)
    private Double 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;
    /**
     * 审核率
     */
    @ExcelProperty(value = "审核率", index = 8)
    private Double checkedRatio;
    /**
     * 立案率
     */
    @ExcelProperty(value = "立案率", index = 9)
    private Double registerRatio;
    /**
     * 准确率
     */
    @ExcelProperty(value = "准确率", index = 10)
    private Double accuracyRatio;
}