You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
package com.example.demo.service.bean;
|
|
|
|
|
|
import com.example.demo.domain.vo.bean.BeanOnlineRechargeInfo;
|
|
import com.example.demo.domain.vo.bean.BeanSystemRechargeInfo;
|
|
import com.example.demo.domain.vo.bean.GoldBean;
|
|
import com.example.demo.domain.vo.coin.RefundUser;
|
|
import com.example.demo.domain.vo.coin.Result;
|
|
import com.example.demo.domain.vo.bean.BeanRecharge;
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName BeanRechargeService
|
|
* @description:
|
|
* @author: Double
|
|
* @create: 2025−07-29 16:47
|
|
* @Version 1.0
|
|
**/
|
|
|
|
public interface BeanRechargeService {
|
|
|
|
//线上充值
|
|
Result add(BeanRecharge recharge);
|
|
|
|
//系统充值
|
|
PageInfo<BeanSystemRechargeInfo> selectBySystem(Integer pageNum, Integer pageSize, BeanSystemRechargeInfo beanRechargeInfo);
|
|
|
|
//系统金豆统计
|
|
GoldBean statsSystemBean(BeanSystemRechargeInfo beanRechargeInfo);
|
|
|
|
//线上充值
|
|
PageInfo<BeanOnlineRechargeInfo> selectByOnline(Integer pageNum, Integer pageSize, BeanOnlineRechargeInfo beanRechargeInfo);
|
|
|
|
//线上金豆统计
|
|
GoldBean statsOnlineBean(BeanOnlineRechargeInfo beanRechargeInfo);
|
|
|
|
//获取系统充值地区
|
|
List<String> systemMarket();
|
|
|
|
//获取线上充值地区
|
|
List<String> onlineMarket();
|
|
}
|