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

11 lines
322 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;
}