ITWarehouseAgreementitemsService.java 1.9 KB

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