package incheon.res.rdm.oe.gfc.mapper;


import incheon.com.config.annotation.MainDB;
import incheon.res.rdm.oe.gfc.vo.RdmOeGfc;
import incheon.res.rdm.oe.gfc.vo.RdmOeGfcVO;
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;

import java.util.List;

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB
public interface RdmOeGfcMapper {

	/**
	 * @MethodDESC : 수수료납부정보 목록 (검색)
	 */
	List selectG4fcList(RdmOeGfcVO vo) throws Exception;


	/**
	 * @MethodDESC : 수수료정보 상세조회
	 */
	RdmOeGfc selectG4fc(RdmOeGfcVO vo) throws Exception;


	/**
	 * @MethodDESC : 수수료정보 count
	 */
	int countG4fc(RdmOeGfcVO vo) throws Exception;

	
	/**
	 * @MethodDESC : G4c전자지불 연계현황 (검색)
	 */
	List selectG4cListLinked(RdmOeGfcVO vo) throws Exception;

}