package org.jeecg.modules.demo.hzz.shjsgc.engineeringpush.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 org.jeecg.modules.demo.hzz.shjsgc.engineeringpush.dto.RmEngineeringpushDto; import org.jeecg.modules.demo.hzz.shjsgc.engineeringpush.mapper.RmEngineeringpushDtoMapper; import org.jeecg.modules.demo.hzz.shjsgc.engineeringpush.service.IRmEngineeringpushDtoService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; /** * @Description: 工程推送 * @Author: jeecg-boot * @Date: 2023-03-11 * @Version: V1.0 */ @Service public class RmEngineeringpushDtoServiceImpl extends ServiceImpl implements IRmEngineeringpushDtoService { @Autowired private RmEngineeringpushDtoMapper rmEngineeringpushDtoMapper; @Override public IPage selectList(int page, int size,QueryWrapper queryWrapper) { Page rmEngineeringpushDtoPage = new Page<>(page,size); IPage rmEngineeringpushDtoIPage = rmEngineeringpushDtoMapper.selectBlogByPage(rmEngineeringpushDtoPage,queryWrapper); return rmEngineeringpushDtoIPage; } }