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