package incheon.ags.ias.logInq.mapper;

import incheon.ags.ias.logInq.vo.LogInqSearchVO;
import incheon.ags.ias.logInq.vo.LogInqVO;
import incheon.com.config.annotation.MainDB;
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;

import java.util.List;
import java.util.Map;

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB
public interface LogInqMapper {
    List<Map<String,Object>> selectLogInqList(LogInqSearchVO logInqSearchVO) throws Exception;
    LogInqVO selectLogInqDetail(LogInqVO logInqVO) throws Exception;
    int selectLogInqCnt(LogInqSearchVO logInqSearchVO) throws Exception;
}
