From 94b94bca53eb2524d6897b3cc8a03ef4526e58c5 Mon Sep 17 00:00:00 2001 From: ye1023 <12588209+ye1023@user.noreply.gitee.com> Date: Tue, 14 Jul 2026 15:25:48 +0800 Subject: [PATCH] =?UTF-8?q?yxk-20260714=20=E6=88=91=E7=9A=84=E5=B7=B2?= =?UTF-8?q?=E9=98=85=20=EF=BC=9A=E6=8C=89=20read=5Ftime=20=E5=80=92?= =?UTF-8?q?=E5=BA=8F=E6=8E=92=E5=BA=8F=EF=BC=8C=E6=9C=80=E6=96=B0=E5=B7=B2?= =?UTF-8?q?=E9=98=85=E7=9A=84=E6=8E=92=E6=9C=80=E5=89=8D=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../extbpm/process/mapper/xml/ExtActTaskCcMapper.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/jeecg-boot-platform/jeecg-boot-module-bpm-flowable/src/main/java/org/jeecg/modules/extbpm/process/mapper/xml/ExtActTaskCcMapper.xml b/jeecg-boot-platform/jeecg-boot-module-bpm-flowable/src/main/java/org/jeecg/modules/extbpm/process/mapper/xml/ExtActTaskCcMapper.xml index 043b221..7566a32 100644 --- a/jeecg-boot-platform/jeecg-boot-module-bpm-flowable/src/main/java/org/jeecg/modules/extbpm/process/mapper/xml/ExtActTaskCcMapper.xml +++ b/jeecg-boot-platform/jeecg-boot-module-bpm-flowable/src/main/java/org/jeecg/modules/extbpm/process/mapper/xml/ExtActTaskCcMapper.xml @@ -61,7 +61,14 @@ AND arp.NAME_ LIKE concat(concat('%', #{processDefinitionName}), '%') - ORDER BY COALESCE(cc.CREATE_TIME, aht.END_TIME_, aht.START_TIME_) DESC, cc.ID DESC + + + ORDER BY cc.READ_TIME DESC, cc.ID DESC + + + ORDER BY COALESCE(cc.CREATE_TIME, aht.END_TIME_, aht.START_TIME_) DESC, cc.ID DESC + +