1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.stylefeng.guns.modular.system.service;
|
| import com.baomidou.mybatisplus.service.IService;
| import com.stylefeng.guns.modular.system.model.MoneyVO;
| import com.stylefeng.guns.modular.system.model.Withdrawal;
| import com.stylefeng.guns.modular.system.vo.RechargeListVO;
|
| import java.util.Date;
| import java.util.List;
|
| /**
| * <p>
| * 提现记录 服务类
| * </p>
| *
| * @author 无关风月
| * @since 2024-02-06
| */
| public interface IWithdrawalService extends IService<Withdrawal> {
|
| List<MoneyVO> list(String userName, String phone, Integer state, Integer payment, Date startTime, Date endTime, String startTime1, String endTime1);
|
| List<RechargeListVO> rechargeList(String userName, String phone, Date startTime, Date endTime);
| }
|
|