puzhibing
2023-07-10 f95325fd2635a9af08c0acac70e70379978d128a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dsh.account.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.account.entity.RechargeRecords;
import com.dsh.account.model.vo.userBenefitDetail.RechargeDetailsVo;
import com.dsh.account.model.vo.userBenefitDetail.RechargePayRequest;
import com.dsh.account.util.ResultUtil;
 
/**
 * <p>
 * 充值记录 服务类
 * </p>
 *
 * @author jqs
 * @since 2023-07-07
 */
public interface RechargeRecordsService extends IService<RechargeRecords> {
 
    RechargeDetailsVo getAppUserRechargeRecord(String yearMonth, Integer recordId, Integer appUserId);
 
    ResultUtil rechargeCenPayment(Integer userIdFormRedis, RechargePayRequest request);
 
}