44323
2024-04-23 16b704d18a875d1fb63827aaa507790ba2bef5be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.stylefeng.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.system.dao.WithdrawalMapper;
import com.stylefeng.guns.modular.system.model.MoneyVO;
import com.stylefeng.guns.modular.system.model.Withdrawal;
import com.stylefeng.guns.modular.system.service.IWithdrawalService;
import com.stylefeng.guns.modular.system.vo.RechargeListVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.Date;
import java.util.List;
 
/**
 * <p>
 * 提现记录 服务实现类
 * </p>
 *
 * @author 无关风月
 * @since 2024-02-06
 */
@Service
public class WithdrawalServiceImpl extends ServiceImpl<WithdrawalMapper, Withdrawal> implements IWithdrawalService {
    @Autowired
    private WithdrawalMapper withdrawalMapper;
    @Override
    public List<MoneyVO> list(String userName, String phone,
                              Integer state,Integer payment ,Date startTime, Date endTime
            , String startTime1, String endTime1) {
 
        return withdrawalMapper.list(userName,phone,state,payment,startTime,endTime,startTime1,endTime1);
    }
 
    @Override
    public List<RechargeListVO> rechargeList(String userName, String phone, Date startTime, Date endTime) {
 
        return withdrawalMapper.rechargeList(userName,phone,startTime,endTime);
    }
}