baizonghao
2023-02-24 c4aa721a61edb5ff4502d621897c266b98ef3d1c
ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulShopDto.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,42 +21,50 @@
    /**
     * 商户名称
     */
    @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;
}