12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.ruoyi.shipping.mapper;
- import com.ruoyi.shipping.domain.TTemporaryFile;
- import java.util.List;
- /**
- * 凯和商务端上传箱信息暂存数据Mapper接口
- *
- * @author ruoyi
- * @date 2021-07-01
- */
- public interface TTemporaryFileMapper
- {
- /**
- * 查询凯和商务端上传箱信息暂存数据
- *
- * @param fId 凯和商务端上传箱信息暂存数据ID
- * @return 凯和商务端上传箱信息暂存数据
- */
- public TTemporaryFile selectTTemporaryFileById(Long fId);
- /**
- * 查询凯和商务端上传箱信息暂存数据列表
- *
- * @param tTemporaryFile 凯和商务端上传箱信息暂存数据
- * @return 凯和商务端上传箱信息暂存数据集合
- */
- public List<TTemporaryFile> selectTTemporaryFileList(TTemporaryFile tTemporaryFile);
- /**
- * 查询凯和商务端上传箱信息暂存数据列表
- *
- * @param tTemporaryFile 凯和商务端上传箱信息暂存数据
- * @return 凯和商务端上传箱信息暂存数据集合
- */
- public List<TTemporaryFile> selectTTemporaryFileMessage(TTemporaryFile tTemporaryFile);
- /**
- * 新增凯和商务端上传箱信息暂存数据
- *
- * @param tTemporaryFile 凯和商务端上传箱信息暂存数据
- * @return 结果
- */
- public int insertTTemporaryFile(TTemporaryFile tTemporaryFile);
- /**
- * 修改凯和商务端上传箱信息暂存数据
- *
- * @param tTemporaryFile 凯和商务端上传箱信息暂存数据
- * @return 结果
- */
- public int updateTTemporaryFile(TTemporaryFile tTemporaryFile);
- /**
- * 删除凯和商务端上传箱信息暂存数据
- *
- * @param fId 凯和商务端上传箱信息暂存数据ID
- * @return 结果
- */
- public int deleteTTemporaryFileById(Long fId);
- /**
- * 根据文件名删除暂存数据
- * @param fileName
- * @return
- */
- public int deleteTTemporaryFilefileName(String fileName);
- /**
- * 批量删除凯和商务端上传箱信息暂存数据
- *
- * @param fIds 需要删除的数据ID
- * @return 结果
- */
- public int deleteTTemporaryFileByIds(Long[] fIds);
- }
|