34 lines
1.2 KiB
Java
34 lines
1.2 KiB
Java
package kcc.kccadr.accdnt.acd.service;
|
|
|
|
import java.util.List;
|
|
|
|
import egovframework.rte.psl.dataaccess.util.EgovMap;
|
|
import kcc.kccadr.adjreqmgr.service.AdjReqMgrVO;
|
|
|
|
public interface AdjstChangeDateService {
|
|
|
|
void insert(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
AdjstChangeDateVO selectDetail(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
int update(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
int update4Process(AdjstChangeDateVO adjstChangeDateVO, AdjReqMgrVO adjReqMgrVO) throws Exception;
|
|
|
|
int updateMaster(AdjReqMgrVO adjReqMgrVO) throws Exception;
|
|
|
|
int delete(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
List<AdjstChangeDateVO> selectList(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
List<AdjstChangeDateVO> selectPagingList(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
EgovMap selectAdrRpplInfo(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
//List<?> selectPagingList(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
//조정사건관리인 정보 rpplSeq 번호 받아오기
|
|
String selectAdrRpplSeqInfo(AdjstChangeDateVO adjstChangeDateVO) throws Exception;
|
|
|
|
}
|