16 lines
357 B
Java
16 lines
357 B
Java
|
|
package com.mca.map.mapper;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
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);
|
||
|
|
}
|