package com.doumee.service.business;
|
|
import com.doumee.core.model.PageData;
|
import com.doumee.core.model.PageWrap;
|
import com.doumee.dao.business.model.WithdrawRecord;
|
import com.doumee.dao.web.request.WithdrawApplyRequest;
|
|
import java.util.List;
|
|
/**
|
* 用户提现记录Service定义
|
* @author 江蹄蹄
|
* @date 2026/01/16 11:50
|
*/
|
public interface WithdrawRecordService {
|
|
/**
|
* 创建
|
*
|
* @param withdrawRecord 实体对象
|
* @return Integer
|
*/
|
Integer create(WithdrawRecord withdrawRecord);
|
|
/**
|
* 主键删除
|
*
|
* @param id 主键
|
*/
|
void deleteById(Integer id);
|
|
/**
|
* 删除
|
*
|
* @param withdrawRecord 实体对象
|
*/
|
void delete(WithdrawRecord withdrawRecord);
|
|
/**
|
* 批量主键删除
|
*
|
* @param ids 主键集
|
*/
|
void deleteByIdInBatch(List<Integer> ids);
|
|
/**
|
* 主键更新
|
*
|
* @param withdrawRecord 实体对象
|
*/
|
void updateById(WithdrawRecord withdrawRecord);
|
|
/**
|
* 批量主键更新
|
*
|
* @param withdrawRecords 实体集
|
*/
|
void updateByIdInBatch(List<WithdrawRecord> withdrawRecords);
|
|
/**
|
* 主键查询
|
*
|
* @param id 主键
|
* @return WithdrawRecord
|
*/
|
WithdrawRecord findById(Integer id);
|
|
/**
|
* 条件查询单条记录
|
*
|
* @param withdrawRecord 实体对象
|
* @return WithdrawRecord
|
*/
|
WithdrawRecord findOne(WithdrawRecord withdrawRecord);
|
|
/**
|
* 条件查询
|
*
|
* @param withdrawRecord 实体对象
|
* @return List<WithdrawRecord>
|
*/
|
List<WithdrawRecord> findList(WithdrawRecord withdrawRecord);
|
|
/**
|
* 分页查询
|
*
|
* @param pageWrap 分页对象
|
* @return PageData<WithdrawRecord>
|
*/
|
PageData<WithdrawRecord> findPage(PageWrap<WithdrawRecord> pageWrap);
|
|
/**
|
* 条件统计
|
*
|
* @param withdrawRecord 实体对象
|
* @return long
|
*/
|
long count(WithdrawRecord withdrawRecord);
|
|
/**
|
* 提现申请
|
* @param request
|
* @param integralService
|
*/
|
void withdrawApply(WithdrawApplyRequest request, IntegralService integralService);
|
}
|