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 selectList(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception; List selectListRead1(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception; List selectListRead2(MjonMsgSentTestVO mjonMsgSentTestVO) throws Exception; }