TWarehouseAgreementitemsMapper.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.ruoyi.warehouseBusiness.mapper;
  2. import com.ruoyi.warehouseBusiness.domain.TWarehouseAgreementitems;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.util.List;
  5. /**
  6. * 仓储费明细表Mapper接口
  7. *
  8. * @author ruoyi
  9. * @date 2020-12-11
  10. */
  11. public interface TWarehouseAgreementitemsMapper {
  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. /**
  27. * 新增仓储费明细表
  28. *
  29. * @param tWarehouseAgreementitems 仓储费明细表
  30. * @return 结果
  31. */
  32. public int insertTWarehouseAgreementitems(TWarehouseAgreementitems tWarehouseAgreementitems);
  33. /**
  34. * 修改仓储费明细表
  35. *
  36. * @param tWarehouseAgreementitems 仓储费明细表
  37. * @return 结果
  38. */
  39. public int updateTWarehouseAgreementitems(TWarehouseAgreementitems tWarehouseAgreementitems);
  40. /**
  41. * 删除仓储费明细表
  42. *
  43. * @param fId 仓储费明细表ID
  44. * @return 结果
  45. */
  46. public int deleteTWarehouseAgreementitemsById(Long fId);
  47. /**
  48. * 批量删除仓储费明细表
  49. *
  50. * @param fIds 需要删除的数据ID
  51. * @return 结果
  52. */
  53. public int deleteTWarehouseAgreementitemsByIds(Long[] fIds);
  54. int deleteByFPid(Long fId);
  55. /**
  56. *
  57. * @param fCorpid 出库客户Id
  58. * @param fGoodsid 物资类型Id
  59. * @return
  60. */
  61. List<TWarehouseAgreementitems> getItemsBytWarehouseAgreementMsg(@Param("fCorpid") Long fCorpid,
  62. @Param("fGoodsid") Long fGoodsid,
  63. @Param("feeUnitid") Long feeUnitid);
  64. }