package itn.let.mjo.payva.service; import java.util.List; /** * 주소록 관리를 위한 서비스 인터페이스 클래스 * @author ITN * @since 2021.04.08 * @version 1.0 * @see * *
* << 개정이력(Modification Information) >> * 수정일 수정자 수정내용 * ------- -------- --------------------------- * 2021.04.08 ITN 최초 생성 **/ public interface VacsTotlService { //기본 쿼리 CRUDL void insert(VacsTotlVO vacsTotlVO) throws Exception; VacsTotlVO selectDetail(VacsTotlVO vacsTotlVO) throws Exception; int update(VacsTotlVO vacsTotlVO) throws Exception; int delete(VacsTotlVO vacsTotlVO) throws Exception; List