ITAnnexService.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.ruoyi.warehouseBusiness.service;
  2. import com.ruoyi.warehouseBusiness.domain.TAnnex;
  3. import java.util.List;
  4. /**
  5. * 业务附件Service接口
  6. *
  7. * @author ruoyi
  8. * @date 2021-11-19
  9. */
  10. public interface ITAnnexService {
  11. /**
  12. * 查询业务附件
  13. *
  14. * @param fId 业务附件ID
  15. * @return 业务附件
  16. */
  17. public TAnnex selectTAnnexById(Long fId);
  18. /**
  19. * 查询业务附件列表
  20. *
  21. * @param tAnnex 业务附件
  22. * @return 业务附件集合
  23. */
  24. public List<TAnnex> selectTAnnexList(TAnnex tAnnex);
  25. /**
  26. * 新增业务附件
  27. *
  28. * @param tAnnex 业务附件
  29. * @return 结果
  30. */
  31. public int insertTAnnex(TAnnex tAnnex);
  32. /**
  33. * 修改业务附件
  34. *
  35. * @param tAnnex 业务附件
  36. * @return 结果
  37. */
  38. public int updateTAnnex(TAnnex tAnnex);
  39. /**
  40. * 批量删除业务附件
  41. *
  42. * @param fIds 需要删除的业务附件ID
  43. * @return 结果
  44. */
  45. public int deleteTAnnexByIds(Long[] fIds);
  46. /**
  47. * 删除业务附件信息
  48. *
  49. * @param fId 业务附件ID
  50. * @return 结果
  51. */
  52. public int deleteTAnnexById(Long fId);
  53. }