package incheon.ags.por.mapper;

import incheon.ags.por.vo.PorFileVO;

/**
 * 공지사항 정보 관리를 위한 데이터 접근 매퍼
 */
@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB
public interface PorFileUtilsMapper {

    /**
     * 파일 정보를 등록한다.
     * @param PorFileVO - 등록할 정보가 담긴 VO
     * @return 등록 성공 여부
     * @exception Exception
     */
    public Long insertFileInfo(PorFileVO porFileVO) throws Exception;
    
    /**
     * 파일 정보를 삭제한다.
     * @param PorFileVO - 삭제할 정보가 담긴 VO
     * @return 삭제 성공 여부
     * @exception Exception
     */
    public int deleteFileInfo(PorFileVO porFileVO) throws Exception;
    
} 