package com.gunshi.project.xyt.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gunshi.file.model.FileDescriptor; import com.gunshi.project.xyt.model.RescueTeamFile; 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 RescueTeamFileMapper extends BaseMapper { @Select(""" """) List queryFiles(@Param("teamId") Long teamId); }