1
0

OWbInveFreezeMapper.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.emato.biz.mapper.warehouse;
  2. import java.util.List;
  3. import com.emato.biz.domain.warehouse.OWbInveFreeze;
  4. /**
  5. * 库存冻结记录,记录订单商品冻结Mapper接口
  6. *
  7. * @author yangbo
  8. * @date 2021-02-01
  9. */
  10. public interface OWbInveFreezeMapper
  11. {
  12. /**
  13. * 查询库存冻结记录,记录订单商品冻结
  14. *
  15. * @param inveFzeSn 库存冻结记录,记录订单商品冻结ID
  16. * @return 库存冻结记录,记录订单商品冻结
  17. */
  18. public OWbInveFreeze selectOWbInveFreezeById(String inveFzeSn);
  19. /**
  20. * 查询库存冻结记录,记录订单商品冻结列表
  21. *
  22. * @param oWbInveFreeze 库存冻结记录,记录订单商品冻结
  23. * @return 库存冻结记录,记录订单商品冻结集合
  24. */
  25. public List<OWbInveFreeze> selectOWbInveFreezeList(OWbInveFreeze oWbInveFreeze);
  26. /**
  27. * 新增库存冻结记录,记录订单商品冻结
  28. *
  29. * @param oWbInveFreeze 库存冻结记录,记录订单商品冻结
  30. * @return 结果
  31. */
  32. public int insertOWbInveFreeze(OWbInveFreeze oWbInveFreeze);
  33. /**
  34. * 修改库存冻结记录,记录订单商品冻结
  35. *
  36. * @param oWbInveFreeze 库存冻结记录,记录订单商品冻结
  37. * @return 结果
  38. */
  39. public int updateOWbInveFreeze(OWbInveFreeze oWbInveFreeze);
  40. /**
  41. * 删除库存冻结记录,记录订单商品冻结
  42. *
  43. * @param inveFzeSn 库存冻结记录,记录订单商品冻结ID
  44. * @return 结果
  45. */
  46. public int deleteOWbInveFreezeById(String inveFzeSn);
  47. /**
  48. * 批量删除库存冻结记录,记录订单商品冻结
  49. *
  50. * @param inveFzeSns 需要删除的数据ID
  51. * @return 结果
  52. */
  53. public int deleteOWbInveFreezeByIds(String[] inveFzeSns);
  54. }