2022-02-15 07:38:58 +00:00
|
|
|
package com.mca.map.mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2022-03-04 07:06:39 +00:00
|
|
|
import com.mca.map.vo.UseHistoryChartVO;
|
2022-02-15 07:38:58 +00:00
|
|
|
import com.mca.map.vo.UseHistorySearchVO;
|
|
|
|
|
|
|
|
|
|
import egovframework.rte.psl.dataaccess.mapper.Mapper;
|
|
|
|
|
|
|
|
|
|
@Mapper("useHistoryMapper")
|
|
|
|
|
public interface UseHistoryMapper {
|
|
|
|
|
|
|
|
|
|
List<?> selectUseHistoryList(UseHistorySearchVO useHistorySearchVO);
|
|
|
|
|
|
|
|
|
|
int selectUseHistoryCnt(UseHistorySearchVO useHistorySearchVO);
|
2022-03-04 07:06:39 +00:00
|
|
|
|
|
|
|
|
List<UseHistoryChartVO> selectDayMapUseData(UseHistorySearchVO useHistorySearchVO);
|
2022-02-15 07:38:58 +00:00
|
|
|
}
|