package com.ycl.dto.statistics;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
|
/**
|
* UnlawfulShopDto 门前三包统计
|
*
|
* @version V1.0
|
* @author: AI
|
* @date: 2022-11-01 17:09
|
**/
|
@Data
|
@AllArgsConstructor
|
@NoArgsConstructor
|
public class UnlawfulShopDto {
|
|
/**
|
* 商户名称
|
*/
|
@ExcelProperty(value = "商户名称", index = 0)
|
private String name;
|
|
/**
|
* 事件总数
|
*/
|
@ExcelProperty(value = "事件总数", index = 1)
|
private Integer count;
|
|
/**
|
* 包卫生
|
*/
|
@ExcelProperty(value = "包卫生", index = 2)
|
private Integer sanitation;
|
|
/**
|
* 包秩续
|
*/
|
@ExcelProperty(value = "包秩续", index = 3)
|
private Integer orderliness;
|
|
/**
|
* 包设施
|
*/
|
@ExcelProperty(value = "包设施", index = 4)
|
private Integer facility;
|
|
/**
|
* 立案
|
*/
|
@ExcelProperty(value = "立案", index = 5)
|
private Integer register;
|
|
/**
|
* 已审核
|
*/
|
@ExcelProperty(value = "已审核", index = 6)
|
private Integer checked;
|
|
|
/**
|
* 立案率
|
*/
|
@ExcelProperty(value = "立案率", index = 7)
|
private Double registerRatio;
|
|
}
|