猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.6 KiB

1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
  1. package com.ruoyi.model.mapper;
  2. import java.util.List;
  3. import com.ruoyi.model.domain.WithdrawalConfig;
  4. /**
  5. * 钱包提现配置Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2025-03-05
  9. */
  10. public interface WithdrawalConfigMapper
  11. {
  12. /**
  13. * 查询钱包提现配置
  14. *
  15. * @param id 钱包提现配置主键
  16. * @return 钱包提现配置
  17. */
  18. public WithdrawalConfig selectWithdrawalConfigById(Long id);
  19. /**
  20. * 查询钱包提现配置列表
  21. *
  22. * @param withdrawalConfig 钱包提现配置
  23. * @return 钱包提现配置集合
  24. */
  25. public List<WithdrawalConfig> selectWithdrawalConfigList(WithdrawalConfig withdrawalConfig);
  26. /**
  27. * 新增钱包提现配置
  28. *
  29. * @param withdrawalConfig 钱包提现配置
  30. * @return 结果
  31. */
  32. public int insertWithdrawalConfig(WithdrawalConfig withdrawalConfig);
  33. /**
  34. * 修改钱包提现配置
  35. *
  36. * @param withdrawalConfig 钱包提现配置
  37. * @return 结果
  38. */
  39. public int updateWithdrawalConfig(WithdrawalConfig withdrawalConfig);
  40. /**
  41. * 删除钱包提现配置
  42. *
  43. * @param id 钱包提现配置主键
  44. * @return 结果
  45. */
  46. public int deleteWithdrawalConfigById(Long id);
  47. /**
  48. * 批量删除钱包提现配置
  49. *
  50. * @param ids 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteWithdrawalConfigByIds(Long[] ids);
  54. /**
  55. * 查询钱包提现配置列表
  56. *
  57. * @return 钱包提现配置集合
  58. */
  59. public List<WithdrawalConfig> getWithdrawalConfigList();
  60. }