IInterestsTableService.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.ruoyi.system.service;
  2. import java.util.List;
  3. import com.ruoyi.common.core.domain.AjaxResult;
  4. import com.ruoyi.system.domain.InterestsTable;
  5. /**
  6. * 商户权益记录Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2022-07-08
  10. */
  11. public interface IInterestsTableService
  12. {
  13. /**
  14. * 查询商户权益记录
  15. *
  16. * @param id 商户权益记录主键
  17. * @return 商户权益记录
  18. */
  19. public InterestsTable selectInterestsTableById(Long id);
  20. /**
  21. * 查询商户权益记录列表
  22. *
  23. * @param interestsTable 商户权益记录
  24. * @return 商户权益记录集合
  25. */
  26. public List<InterestsTable> selectInterestsTableList(InterestsTable interestsTable);
  27. /**
  28. * 新增商户权益记录
  29. *
  30. * @param interestsTable 商户权益记录
  31. * @return 结果
  32. */
  33. public AjaxResult insertInterestsTable(InterestsTable interestsTable);
  34. /**
  35. * 修改商户权益记录
  36. *
  37. * @param interestsTable 商户权益记录
  38. * @return 结果
  39. */
  40. public AjaxResult updateInterestsTable(InterestsTable interestsTable);
  41. /**
  42. * 批量删除商户权益记录
  43. *
  44. * @param ids 需要删除的商户权益记录主键集合
  45. * @return 结果
  46. */
  47. public int deleteInterestsTableByIds(Long[] ids);
  48. /**
  49. * 删除商户权益记录信息
  50. *
  51. * @param id 商户权益记录主键
  52. * @return 结果
  53. */
  54. public int deleteInterestsTableById(Long id);
  55. }