修复结果总览模型名称排序兼容性问题

This commit is contained in:
wkc
2026-03-20 12:06:37 +08:00
parent a7f068b309
commit 633f085083
4 changed files with 12 additions and 1 deletions

View File

@@ -247,7 +247,7 @@
</select>
<select id="selectRiskModelNamesByScope" resultType="java.lang.String">
select distinct scoped.model_name
select scoped.model_name
from (
<include refid="resolvedEmployeeRiskBaseSql"/>
) scoped
@@ -256,6 +256,7 @@
<if test="selectedModelCodes != null and selectedModelCodes != ''">
and find_in_set(scoped.model_code, #{selectedModelCodes})
</if>
group by scoped.model_code, scoped.model_name
order by scoped.model_code asc
</select>