DESKTOP-6ARNG1Q\dlsgk cdb2aaf525 테이블 분리 작업
파일 : T_UPLOAD_INFO
판매점 :  T_SALES_STORE_INFO
발전시뮬레이션 ITEM : T_ITEM_INFO
ITEM 조회 : T_ITEM_INFO
2025-03-04 13:36:52 +09:00

54 lines
1.0 KiB
Java

package com.interplug.qcast.biz.file;
import com.interplug.qcast.biz.file.dto.FileRequest;
import com.interplug.qcast.biz.file.dto.FileResponse;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface FileMapper {
/**
* 파일 삭제
*
* @param fileDeleteReq
* @return
* @throws Exception
*/
Integer deleteFile(FileRequest fileDeleteReq) throws Exception;
/**
* 파일 등록
*
* @param fileInsertReq
* @return
* @throws Exception
*/
Integer insertFile(FileRequest fileInsertReq) throws Exception;
/**
* 파일 상세정보 등록
*
* @param fileInsertReq
* @return
* @throws Exception
*/
Integer insertFileInfo(FileRequest fileInsertReq) throws Exception;
/**
* 파일 1건 조회
*
* @param fileDeleteReq
* @return
*/
FileResponse selectFile(FileRequest fileDeleteReq);
/**
* 파일 목록 조회
*
* @param fileDeleteReq
* @return
*/
List<FileResponse> selectFileList(FileRequest fileDeleteReq);
}