fix: 修复#465检验项目列表限制500项

根因: LabActivityDefinitionManageMapper.xml中getLabActivityDefinitionSimpleList查询
设置了LIMIT 500/1500的限制,导致检验项目超过500项时无法完整显示。

修复: 将LIMIT限制提高到10000,支持更多检验项目。
This commit is contained in:
guanyu
2026-04-29 17:13:44 +08:00
parent e1ad4965eb
commit 783ee48ec8

View File

@@ -143,10 +143,10 @@
</if>
ORDER BY T1.id DESC
<if test="searchKey != null and searchKey != ''">
LIMIT 1500
LIMIT 10000
</if>
<if test="searchKey == null or searchKey == ''">
LIMIT 500
LIMIT 10000
</if>
</select>