123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.ruoyi.warehouseBusiness.mapper;
- import com.ruoyi.warehouseBusiness.domain.TAnnex;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * 业务附件Mapper接口
- *
- * @author ruoyi
- * @date 2021-11-19
- */
- @Mapper
- public interface TAnnexMapper {
- /**
- * 查询业务附件
- *
- * @param fId 业务附件ID
- * @return 业务附件
- */
- public TAnnex selectTAnnexById(Long fId);
- /**
- * 查询业务附件列表
- *
- * @param tAnnex 业务附件
- * @return 业务附件集合
- */
- public List<TAnnex> selectTAnnexList(TAnnex tAnnex);
- /**
- * 新增业务附件
- *
- * @param tAnnex 业务附件
- * @return 结果
- */
- public int insertTAnnex(TAnnex tAnnex);
- /**
- * 修改业务附件
- *
- * @param tAnnex 业务附件
- * @return 结果
- */
- public int updateTAnnex(TAnnex tAnnex);
- /**
- * 删除业务附件
- *
- * @param fId 业务附件ID
- * @return 结果
- */
- public int deleteTAnnexById(Long fId);
- /**
- * 批量删除业务附件
- *
- * @param fIds 需要删除的数据ID
- * @return 结果
- */
- public int deleteTAnnexByIds(Long[] fIds);
- /**
- * 删除来源id
- * @param fPid
- * @return
- */
- int deleteByPid(@Param("pid") Long fPid, @Param("actId") Long actId);
- }
|