package incheon.ags.ias.dataHoprReg.mapper;

import incheon.ags.ias.dataHoprReg.vo.KbRtmsBjdcdVO;
import incheon.ags.ias.dataHoprReg.vo.KbRtmsInfoVO;
import incheon.ags.ias.dataHoprReg.vo.KbRtmsPriceVO;
import incheon.ags.ias.dataHoprReg.vo.KbRtmsPyongVO;
import incheon.com.config.annotation.MainDB;
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;

/**
 * KB RTMS 데이터 동기화 Mapper
 */
@Mapper
@MainDB
public interface KbRtmsSyncMapper {

    int deleteBjdcdAll();

    int insertBjdcd(KbRtmsBjdcdVO vo);

    int deleteInfoAll();

    int insertInfo(KbRtmsInfoVO vo);

    int upsertPrice(KbRtmsPriceVO vo);

    int deletePyongAll();

    int insertPyong(KbRtmsPyongVO vo);
}
