修改LoadFromDatabase列表按照活时间排序

This commit is contained in:
duwenyuan 2025-04-16 09:06:37 +08:00
parent 17b58e10c2
commit 5a605e432e

View File

@ -168,10 +168,10 @@
</if>
</where>
<if test=" orderField != 'createTime' and orderField != '' and orderField != null and orderType != '' and orderType != null ">
ORDER BY ${orderField} ${orderType}
ORDER BY ${orderField} ${orderType},acquisitionRealSec DESC
</if>
<if test=" orderField == 'createTime' or orderField == '' or orderField == null or orderType == '' or orderType == null ">
ORDER BY collectStop DESC
ORDER BY collectStop DESC,acquisitionRealSec DESC
</if>
</select>