puzhibing
2023-07-26 709a4a10be56952ead6340e4822fce41a66e47cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.stylefeng.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.system.dao.RechargeRecordMapper;
import com.stylefeng.guns.modular.system.model.RechargeRecord;
import com.stylefeng.guns.modular.system.service.IRechargeRecordService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @date 2023/6/2 14:26
 */
@Service
public class RechargeRecordServiceImpl extends ServiceImpl<RechargeRecordMapper, RechargeRecord> implements IRechargeRecordService {
 
    @Override
    public Double querSumSurplusDividedAmount(Integer type) {
        return this.baseMapper.querSumSurplusDividedAmount(type);
    }
}