package com.gunshi.project.xyt.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.gunshi.project.xyt.entity.so.InspectTaskPageSo; import com.gunshi.project.xyt.model.InspectTask; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; /** * 描述: 巡检任务 * author: xusan * date: 2024-08-29 14:21:15 */ @Mapper public interface InspectTaskMapper extends BaseMapper { @Select(""" """) Page pageQuery(Page page,@Param("obj") InspectTaskPageSo pageSo); }