fix: 修复#465检验项目列表限制500项
根因: LabActivityDefinitionManageMapper.xml中getLabActivityDefinitionSimpleList查询 设置了LIMIT 500/1500的限制,导致检验项目超过500项时无法完整显示。 修复: 将LIMIT限制提高到10000,支持更多检验项目。
This commit is contained in:
@@ -143,10 +143,10 @@
|
|||||||
</if>
|
</if>
|
||||||
ORDER BY T1.id DESC
|
ORDER BY T1.id DESC
|
||||||
<if test="searchKey != null and searchKey != ''">
|
<if test="searchKey != null and searchKey != ''">
|
||||||
LIMIT 1500
|
LIMIT 10000
|
||||||
</if>
|
</if>
|
||||||
<if test="searchKey == null or searchKey == ''">
|
<if test="searchKey == null or searchKey == ''">
|
||||||
LIMIT 500
|
LIMIT 10000
|
||||||
</if>
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user