File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package itn.let.mjo.cert.service;
import java.util.List;
import itn.com.cmm.service.FileVO;
public interface CertService {
List<CertVO> selectCertEtcList(CertVO certVO) throws Exception;
CertVO selectCertVO(CertVO searchVO) throws Exception;
List<CertVO> selectCertFileList(CertVO searchVO) throws Exception;
void insertCertFile(CertVO certVO) throws Exception;
List<FileVO> selectCertDetailFileList(CertVO tempCertVO) throws Exception;
void deleteCertEtc(CertVO tempCertVO) throws Exception;
void updateCertFile(CertVO certVO) throws Exception;
}