安全检查库排序

This commit is contained in:
guoshengxiong 2024-08-02 09:33:06 +08:00
parent d2e76c3b9a
commit afb685614e

View File

@ -45,7 +45,7 @@
from xz_security_danger_type_record a
WHERE a.parent_id = 0
and a.sn = #{sn}
ORDER BY a.parent_id, a.order_sort
ORDER BY a.parent_id, a.order_sort,a.id
</select>
<select id="selectCompanyChildDangerTypeList" resultType="com.zhgd.jeecg.common.mybatis.EntityMap">
SELECT a.id,
@ -59,7 +59,7 @@
from xz_security_danger_type_record a
WHERE a.parent_id != 0
and a.sn = #{sn}
ORDER BY a.parent_id, a.order_sort
ORDER BY a.parent_id, a.order_sort,a.id
</select>
<select id="getBigList" resultType="com.zhgd.jeecg.common.mybatis.EntityMap">