123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.ruoyi.system.service;
- import java.util.List;
- import com.ruoyi.common.core.domain.AjaxResult;
- import com.ruoyi.system.domain.InterestsTable;
- /**
- * 商户权益记录Service接口
- *
- * @author ruoyi
- * @date 2022-07-08
- */
- public interface IInterestsTableService
- {
- /**
- * 查询商户权益记录
- *
- * @param id 商户权益记录主键
- * @return 商户权益记录
- */
- public InterestsTable selectInterestsTableById(Long id);
- /**
- * 查询商户权益记录列表
- *
- * @param interestsTable 商户权益记录
- * @return 商户权益记录集合
- */
- public List<InterestsTable> selectInterestsTableList(InterestsTable interestsTable);
- /**
- * 新增商户权益记录
- *
- * @param interestsTable 商户权益记录
- * @return 结果
- */
- public AjaxResult insertInterestsTable(InterestsTable interestsTable);
- /**
- * 修改商户权益记录
- *
- * @param interestsTable 商户权益记录
- * @return 结果
- */
- public AjaxResult updateInterestsTable(InterestsTable interestsTable);
- /**
- * 批量删除商户权益记录
- *
- * @param ids 需要删除的商户权益记录主键集合
- * @return 结果
- */
- public int deleteInterestsTableByIds(Long[] ids);
- /**
- * 删除商户权益记录信息
- *
- * @param id 商户权益记录主键
- * @return 结果
- */
- public int deleteInterestsTableById(Long id);
- }
|