fairnet/src/main/java/seed/com/user/mypage/CaseAuthService.java

13 lines
471 B
Java

package seed.com.user.mypage;
import java.util.List;
public interface CaseAuthService {
public List<CaseAuthVO> selectCaseAuthList(CaseAuthVO caseAuthVO) throws Exception;
public void insertCaseAuth(CaseAuthVO caseAuthVO) throws Exception;
public CaseAuthVO selectRceptNo(CaseAuthVO caseAuthVO) throws Exception;
public CaseAuthVO selectCaseAuthExist(CaseAuthVO caseAuthVO) throws Exception;
public void updateCaseAuth(CaseAuthVO caseAuthVO) throws Exception;
}