package org.jeecg.modules.demo.hzz.shjsgc.engineeringpush.mapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import org.apache.ibatis.annotations.Param; import org.jeecg.modules.demo.hzz.shjsgc.engineeringpush.dto.RmEngineeringpushDto; /** * @Description: 工程推送 * @Author: jeecg-boot * @Date: 2023-03-11 * @Version: V1.0 */ public interface RmEngineeringpushDtoMapper extends BaseMapper { IPage selectBlogByPage(IPage page, @Param("ew") QueryWrapper queryWrapper); }