62 lines
1.7 KiB
Java
62 lines
1.7 KiB
Java
package com.ruoyi.system.mapper;
|
|
|
|
import java.util.List;
|
|
import com.ruoyi.system.domain.UserMemnerConsumptionLog;
|
|
|
|
/**
|
|
* 用户消费余额记录Mapper接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2025-06-26
|
|
*/
|
|
public interface UserMemnerConsumptionLogMapper
|
|
{
|
|
/**
|
|
* 查询用户消费余额记录
|
|
*
|
|
* @param id 用户消费余额记录主键
|
|
* @return 用户消费余额记录
|
|
*/
|
|
public UserMemnerConsumptionLog selectUserMemnerConsumptionLogById(Integer id);
|
|
|
|
/**
|
|
* 查询用户消费余额记录列表
|
|
*
|
|
* @param userMemnerConsumptionLog 用户消费余额记录
|
|
* @return 用户消费余额记录集合
|
|
*/
|
|
public List<UserMemnerConsumptionLog> selectUserMemnerConsumptionLogList(UserMemnerConsumptionLog userMemnerConsumptionLog);
|
|
|
|
/**
|
|
* 新增用户消费余额记录
|
|
*
|
|
* @param userMemnerConsumptionLog 用户消费余额记录
|
|
* @return 结果
|
|
*/
|
|
public int insertUserMemnerConsumptionLog(UserMemnerConsumptionLog userMemnerConsumptionLog);
|
|
|
|
/**
|
|
* 修改用户消费余额记录
|
|
*
|
|
* @param userMemnerConsumptionLog 用户消费余额记录
|
|
* @return 结果
|
|
*/
|
|
public int updateUserMemnerConsumptionLog(UserMemnerConsumptionLog userMemnerConsumptionLog);
|
|
|
|
/**
|
|
* 删除用户消费余额记录
|
|
*
|
|
* @param id 用户消费余额记录主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteUserMemnerConsumptionLogById(Integer id);
|
|
|
|
/**
|
|
* 批量删除用户消费余额记录
|
|
*
|
|
* @param ids 需要删除的数据主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteUserMemnerConsumptionLogByIds(Integer[] ids);
|
|
}
|