zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
41
42
43
package org.jeecg.modules.bonus.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.query.QueryGenerator;
import org.jeecg.modules.bonus.entity.BonusPayment;
import org.jeecg.modules.bonus.mapper.BonusPaymentMapper;
import org.jeecg.modules.bonus.service.IBonusPaymentService;
import org.jeecg.modules.project.entity.ProProject;
import org.jeecg.modules.project.service.IProProjectService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
 
import javax.servlet.http.HttpServletRequest;
import java.util.List;
 
/**
 * (BonusPayment)表服务实现类
 *
 * @author makejava
 * @since 2022-03-18 16:44:20
 */
@Service
@Slf4j
public class BonusPaymentServiceImpl extends ServiceImpl<BonusPaymentMapper, BonusPayment> implements IBonusPaymentService {
    @Autowired
    private BonusPaymentMapper paymentMapper;
 
    @Override
    public List<BonusPayment> queryPageList(BonusPayment payment) {
 
        return paymentMapper.queryPageList(payment);
    }
}