package com.gunshi.project.xyt.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gunshi.project.xyt.model.FileAssociations; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; /** * 描述: 文件关联业务表 * author: xusan * date: 2024-07-17 10:09:40 */ @Mapper public interface FileAssociationsMapper extends BaseMapper { @Select(""" """) List getFiles(@Param("tableName") String tableName,@Param("businessId") String businessId); }