baizonghao
2023-02-24 c4aa721a61edb5ff4502d621897c266b98ef3d1c
ycl-platform/src/main/java/com/ycl/mapper/unlawful/UnlawfulMapper.java
@@ -6,10 +6,34 @@
import java.util.List;
public interface UnlawfulMapper {
    /**
     * 获取总违规数量
     */
    Integer getTotal();
    /**
     *  按照违规类型统计
     */
    List<CategoryDto> getDataByType(Integer currentPage, Integer pageSize, String startTime, String endTime);
    StatusDto getStatusDataByType(String startTime, String endTime, Integer dictionaryId);
    List<CategoryDto> getDataByTypeExp();
    Integer getTotal();
    /**
     *  按照区域统计
     */
    List<CategoryDto> getDataByStreet(Integer currentPage, Integer pageSize, String startTime, String endTime);
    StatusDto getStatusDataByStreet(String startTime, String endTime, Integer streetId);
    List<CategoryDto> getDataByStreetExp();
    /**
     * 按点位统计
     */
    List<String> getDataBySite(Integer currentPage, Integer pageSize, String startTime, String endTime);
    StatusDto getStatusDataBySite(String startTime, String endTime, String site);
    List<String> getDataBySiteExp();
}