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);
|
}
|
}
|