package itn.let.mjo.msgsent.service;

import java.util.List;

public interface MjonMsgSentTestService {

	//기본 쿼리 CRUDL
	void insert(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception;
	
	MjonMsgSentTestVO selectDetail(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception;

	int update(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception;
	
	int delete(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception;
	
	List<MjonMsgSentTestVO> selectList(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception;
	
	List<MjonMsgSentTestVO> selectListRead1(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception;
	
	List<MjonMsgSentTestVO> selectListRead2(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception;
	
}
