CodeSkuRelationshipMapper.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.ruoyi.base.mapper;
  2. import com.ruoyi.base.domain.CodeSkuRelationship;
  3. import com.ruoyi.base.domain.vo.CodeSkuRelationshipVO;
  4. import java.util.List;
  5. /**
  6. * 条码品号关系表Mapper接口
  7. *
  8. * @author andy
  9. * @date 2022-11-07
  10. */
  11. public interface CodeSkuRelationshipMapper
  12. {
  13. /**
  14. * 查询条码品号关系表
  15. *
  16. * @param id 条码品号关系表主键
  17. * @return 条码品号关系表
  18. */
  19. CodeSkuRelationship selectCodeSkuRelationshipById(Long id);
  20. /**
  21. * 查询条码品号关系表列表
  22. *
  23. * @param codeSkuRelationship 条码品号关系表
  24. * @return 条码品号关系表集合
  25. */
  26. List<CodeSkuRelationship> selectCodeSkuRelationshipList(CodeSkuRelationship codeSkuRelationship);
  27. /**
  28. * 新增条码品号关系表
  29. *
  30. * @param codeSkuRelationship 条码品号关系表
  31. * @return 结果
  32. */
  33. int insertCodeSkuRelationship(CodeSkuRelationship codeSkuRelationship);
  34. /**
  35. * 修改条码品号关系表
  36. *
  37. * @param codeSkuRelationship 条码品号关系表
  38. * @return 结果
  39. */
  40. int updateCodeSkuRelationship(CodeSkuRelationship codeSkuRelationship);
  41. /**
  42. * 删除条码品号关系表
  43. *
  44. * @param id 条码品号关系表主键
  45. * @return 结果
  46. */
  47. int deleteCodeSkuRelationshipById(Long id);
  48. /**
  49. * 批量删除条码品号关系表
  50. *
  51. * @param ids 需要删除的数据主键集合
  52. * @return 结果
  53. */
  54. int deleteCodeSkuRelationshipByIds(Long[] ids);
  55. /**
  56. * 根据sn查询产品条码绑定关系
  57. * @param sn
  58. * @return
  59. */
  60. List<CodeSkuRelationshipVO> selectCodeSkuRelationshipBySn(String sn);
  61. /**
  62. * 根据物料类型查询物料
  63. * @param list
  64. * @return
  65. */
  66. List<CodeSkuRelationshipVO> selectCodeSkuRelationshipVOList(List<String> list);
  67. }