package incheon.ags.ias.clct.mapper;

import incheon.ags.ias.clct.vo.ClctHstryVO;
import incheon.com.config.annotation.MainDB;
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;
import org.apache.ibatis.annotations.Param;

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB
public interface ClctHstryMapper {
    int insertClctHstry(ClctHstryVO clctHstryVO);
    int updateClctHstry(ClctHstryVO clctHstryVO);
    ClctHstryVO selectClctHstryDetail(@Param("clctHstrySn") Long clctHstrySn);
    ClctHstryVO selectClctHstryByExcnId(@Param("excnId") String excnId);
}