1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ycl.mapper.unlawful;
|
| import com.ycl.dto.statistics.CategoryDto;
| import com.ycl.dto.statistics.StatusDto;
|
| import java.util.List;
|
| public interface UnlawfulMapper {
| List<CategoryDto> getDataByType(Integer currentPage, Integer pageSize, String startTime, String endTime);
| StatusDto getStatusDataByType(String startTime, String endTime, Integer dictionaryId);
|
| List<CategoryDto> getDataByTypeExp();
|
| Integer getTotal();
| }
|
|