javacodeadmin/ruoyi-system/src/main/java/com/ruoyi/system/mapper/UserBenefitPointsMapper.java

62 lines
1.5 KiB
Java

package com.ruoyi.system.mapper;
import java.util.List;
import com.ruoyi.system.domain.UserBenefitPoints;
/**
* 购物消费福利金Mapper接口
*
* @author ruoyi
* @date 2025-06-27
*/
public interface UserBenefitPointsMapper
{
/**
* 查询购物消费福利金
*
* @param id 购物消费福利金主键
* @return 购物消费福利金
*/
public UserBenefitPoints selectUserBenefitPointsById(Long id);
/**
* 查询购物消费福利金列表
*
* @param userBenefitPoints 购物消费福利金
* @return 购物消费福利金集合
*/
public List<UserBenefitPoints> selectUserBenefitPointsList(UserBenefitPoints userBenefitPoints);
/**
* 新增购物消费福利金
*
* @param userBenefitPoints 购物消费福利金
* @return 结果
*/
public int insertUserBenefitPoints(UserBenefitPoints userBenefitPoints);
/**
* 修改购物消费福利金
*
* @param userBenefitPoints 购物消费福利金
* @return 结果
*/
public int updateUserBenefitPoints(UserBenefitPoints userBenefitPoints);
/**
* 删除购物消费福利金
*
* @param id 购物消费福利金主键
* @return 结果
*/
public int deleteUserBenefitPointsById(Long id);
/**
* 批量删除购物消费福利金
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteUserBenefitPointsByIds(Long[] ids);
}