ITWarehouseAgreementitemsService.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.ruoyi.warehouseBusiness.service;
  2. import com.ruoyi.warehouseBusiness.domain.TWarehouseAgreementitems;
  3. import java.util.List;
  4. import java.util.Map;
  5. /**
  6. * 仓储费明细表Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2020-12-11
  10. */
  11. public interface ITWarehouseAgreementitemsService {
  12. /**
  13. * 查询仓储费明细表
  14. *
  15. * @param fId 仓储费明细表ID
  16. * @return 仓储费明细表
  17. */
  18. public TWarehouseAgreementitems selectTWarehouseAgreementitemsById(Long fId);
  19. /**
  20. * 查询仓储费明细表列表
  21. *
  22. * @param tWarehouseAgreementitems 仓储费明细表
  23. * @return 仓储费明细表集合
  24. */
  25. public List<TWarehouseAgreementitems> selectTWarehouseAgreementitemsList(TWarehouseAgreementitems tWarehouseAgreementitems);
  26. public List<Map<String, Object>> selectTWarehouseAgreementitemsList1(TWarehouseAgreementitems tWarehouseAgreementitems);
  27. /**
  28. * 新增仓储费明细表
  29. *
  30. * @param tWarehouseAgreementitems 仓储费明细表
  31. * @return 结果
  32. */
  33. public int insertTWarehouseAgreementitems(TWarehouseAgreementitems tWarehouseAgreementitems);
  34. /**
  35. * 修改仓储费明细表
  36. *
  37. * @param tWarehouseAgreementitems 仓储费明细表
  38. * @return 结果
  39. */
  40. public int updateTWarehouseAgreementitems(TWarehouseAgreementitems tWarehouseAgreementitems);
  41. /**
  42. * 批量删除仓储费明细表
  43. *
  44. * @param fIds 需要删除的仓储费明细表ID
  45. * @return 结果
  46. */
  47. public int deleteTWarehouseAgreementitemsByIds(Long[] fIds);
  48. /**
  49. * 删除仓储费明细表信息
  50. *
  51. * @param fId 仓储费明细表ID
  52. * @return 结果
  53. */
  54. public int deleteTWarehouseAgreementitemsById(Long fId);
  55. }