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 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); }