TSeapriceitemMapper.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.ruoyi.quotation.mapper;
  2. import com.ruoyi.quotation.domain.TSeapriceitem;
  3. import java.util.List;
  4. /**
  5. * 【请填写功能名称】Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2021-06-01
  9. */
  10. public interface TSeapriceitemMapper
  11. {
  12. /**
  13. * 查询【请填写功能名称】
  14. *
  15. * @param fId 【请填写功能名称】ID
  16. * @return 【请填写功能名称】
  17. */
  18. public TSeapriceitem selectTSeapriceitemById(Long fId);
  19. /**
  20. * 查询【请填写功能名称】列表
  21. *
  22. * @param tSeapriceitem 【请填写功能名称】
  23. * @return 【请填写功能名称】集合
  24. */
  25. public List<TSeapriceitem> selectTSeapriceitemList(TSeapriceitem tSeapriceitem);
  26. public List<TSeapriceitem> selectTSeapriceitemListApp(TSeapriceitem tSeapriceitem);
  27. /**
  28. * 新增【请填写功能名称】
  29. *
  30. * @param tSeapriceitem 【请填写功能名称】
  31. * @return 结果
  32. */
  33. public int insertTSeapriceitem(TSeapriceitem tSeapriceitem);
  34. /**
  35. * 修改【请填写功能名称】
  36. *
  37. * @param tSeapriceitem 【请填写功能名称】
  38. * @return 结果
  39. */
  40. public int updateTSeapriceitem(TSeapriceitem tSeapriceitem);
  41. /**
  42. * 删除【请填写功能名称】
  43. *
  44. * @param fId 【请填写功能名称】ID
  45. * @return 结果
  46. */
  47. public int deleteTSeapriceitemById(Long fId);
  48. /**
  49. * 批量删除【请填写功能名称】
  50. *
  51. * @param fIds 需要删除的数据ID
  52. * @return 结果
  53. */
  54. public int deleteTSeapriceitemByIds(Long[] fIds);
  55. /**
  56. * 根据父id删除对应明细数据
  57. * @param fPid 父id
  58. * @return 结果
  59. */
  60. public int deleteTSeapriceitemByfPid(Long fPid);
  61. }