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;
|
|
|
/**
|
* UnlawfulTypeDto 按违规类型统计
|
*
|
* @version V1.0
|
* @author: AI
|
* @date: 2022-11-01 17:09
|
**/
|
@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;
|
|
/**
|
* 占比
|
*/
|
@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;
|
|
/**
|
* 审核率
|
*/
|
@ExcelProperty(value = "审核率", index = 8)
|
private String checkedRatio;
|
|
/**
|
* 立案率
|
*/
|
@ExcelProperty(value = "立案率", index = 9)
|
private String registerRatio;
|
|
/**
|
* 准确率
|
*/
|
@ExcelProperty(value = "准确率", index = 10)
|
private String accuracyRatio;
|
}
|