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


import incheon.res.rdm.oe.gfc.vo.RdmOeGfc;
import incheon.res.rdm.oe.gfc.vo.RdmOeGfcVO;

import java.util.List;


public interface RdmOeGfcService {


	List selectG4fcList(RdmOeGfcVO vo) throws Exception;


	int countG4fc(RdmOeGfcVO vo) throws Exception;
	

	RdmOeGfc selectG4fc(RdmOeGfcVO vo) throws Exception;
	

	List selectG4cListLinked(RdmOeGfcVO vo) throws Exception;
	
}