2022-02-15 07:38:58 +00:00
|
|
|
package com.mca.map.mapper;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2022-03-08 05:03:39 +00:00
|
|
|
import com.mca.map.vo.ChartVO;
|
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
|
|
|
|
2022-03-08 05:03:39 +00:00
|
|
|
List<ChartVO> selectDayMapUseData(UseHistorySearchVO useHistorySearchVO);
|
2022-03-16 00:34:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
int selectUseVisit(UseHistorySearchVO useHistorySearchVO); // 방문자수
|
|
|
|
|
|
2022-02-15 07:38:58 +00:00
|
|
|
}
|