SQLLIKE CONCAT('%', #{apiPageBo.apiName}, '%')报错ERROR: could not determine data type of parameter $7分析大概意思指的是:无法确定参数类型,只需要对 #{apiPageBo.apiName} 进行类型转换就行,给它一个明确的类型即可。解决LIKE CONCAT('%', #{apiPageBo.apiName}::text, '%')