package cn.autoform.fw.mapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import cn.autoform.db.entity.DBConnectionManagerEntity; @Mapper public interface DbConnectionMapper { DBConnectionManagerEntity queryDBconnectionManager(@Param("tenantID") String tenantID, @Param("dataConnectionName") String dataConnectionName); }