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.RescueTeamPageSo; import com.gunshi.project.xyt.entity.vo.RescueTeamVo; import com.gunshi.project.xyt.model.RescueTeamB; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; /** * 描述: 抢险队伍 * author: xusan * date: 2024-07-08 15:44:08 */ @Mapper public interface RescueTeamBMapper extends BaseMapper { @Select(""" """) Page pageQuery(@Param("page") Page page, @Param("obj") RescueTeamPageSo rescueTeamPageSo); }