copy from ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulTypeDto.java
copy to ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulShopDto.java
File was copied from ycl-platform/src/main/java/com/ycl/dto/statistics/UnlawfulTypeDto.java |
| | |
| | | |
| | | |
| | | /** |
| | | * UnlawfulTypeDto 按违规类型统计 |
| | | * UnlawfulShopDto 门前三包统计 |
| | | * |
| | | * @version V1.0 |
| | | * @author: AI |
| | |
| | | @Data |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | public class UnlawfulTypeDto { |
| | | public class UnlawfulShopDto { |
| | | |
| | | /** |
| | | * 类型名称 |
| | | * 商户名称 |
| | | */ |
| | | private String name; |
| | | |
| | |
| | | private Integer count; |
| | | |
| | | /** |
| | | * 占比 |
| | | * 包卫生 |
| | | */ |
| | | private Double ratio; |
| | | private Integer sanitation; |
| | | |
| | | /** |
| | | * 包秩续 |
| | | */ |
| | | private Integer orderliness; |
| | | |
| | | /** |
| | | * 包设施 |
| | | */ |
| | | private Integer facility; |
| | | |
| | | /** |
| | | * 立案 |
| | |
| | | private Integer register; |
| | | |
| | | /** |
| | | * 暂不立案 |
| | | */ |
| | | private Integer notRegister; |
| | | |
| | | /** |
| | | * 结案 |
| | | */ |
| | | private Integer closing; |
| | | |
| | | /** |
| | | * 再学习 |
| | | */ |
| | | private Integer relearn; |
| | | |
| | | /** |
| | | * 已审核 |
| | | */ |
| | | private Integer checked; |
| | | |
| | | /** |
| | | * 审核率 |
| | | */ |
| | | private Double checkedRatio; |
| | | |
| | | /** |
| | | * 立案率 |