| | |
| | | package com.ycl.dto.statistics; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | |
| | | /** |
| | | * 商户名称 |
| | | */ |
| | | @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; |
| | | |
| | | } |