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

import incheon.res.rdm.oe.queans.vo.RdmOeQueans;
import incheon.res.rdm.oe.queans.vo.RdmOeQueansVO;

import java.util.List;


public interface RdmOeQueansService {

	int countList(RdmOeQueansVO vo) throws Exception;

	List selectQueansList(RdmOeQueansVO vo) throws Exception;

	RdmOeQueans selectQueans(RdmOeQueansVO vo) throws Exception;

	RdmOeQueans selectQueansByQueInfo(RdmOeQueansVO vo) throws Exception;

	int updateQueansHitcnt(RdmOeQueansVO vo) throws Exception;

	String selectMaxQueSeq(RdmOeQueansVO vo) throws Exception;

	String selectMaxAnsSeq(RdmOeQueansVO vo) throws Exception;

	int updateHitCntAdd(RdmOeQueansVO vo) throws Exception;

	void insertQueans(RdmOeQueansVO vo) throws Exception;

	int updateQueans(RdmOeQueansVO vo) throws Exception;

	int deleteQueans(RdmOeQueansVO vo) throws Exception;
}
