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.RotaLogPageSo; import com.gunshi.project.xyt.model.RotaLog; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; @Mapper public interface RotaLogMapper extends BaseMapper { @Select(""" """) Page queryPage(Page page,@Param("obj") RotaLogPageSo rotaLogPageSo); }