package com.gunshi.project.xyt.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.gunshi.file.model.FileDescriptor; import com.gunshi.project.xyt.entity.so.RescueGoodsPageSo; import com.gunshi.project.xyt.model.RescueGoodsB; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; @Mapper public interface RescueGoodsMapper extends BaseMapper { @Select(""" """) Page pageQuery(@Param("page") Page page,@Param("obj") RescueGoodsPageSo RescueGoodsPageSo); @Select(""" """) List detail(@Param("goodsId") Long goodsId); }