From b09320560947faa3f085b775bf689891557d76e8 Mon Sep 17 00:00:00 2001 From: lihongyu <504404568@qq.com> Date: Wed, 23 Nov 2022 12:57:38 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=9E=E8=BE=89=E4=BB=A3=E7=A0=81=E8=BF=98?= =?UTF-8?q?=E5=8E=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../coe/pal/pal/repository/util/CoeProcessLevelUtil.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/util/CoeProcessLevelUtil.java b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/util/CoeProcessLevelUtil.java index bb996d38..a7072fab 100755 --- a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/util/CoeProcessLevelUtil.java +++ b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/util/CoeProcessLevelUtil.java @@ -2157,9 +2157,9 @@ public class CoeProcessLevelUtil { } PALMethodModel methodModel = PALMethodCache.getPALMethodModelById(m.getMethodId()); List groups = methodModel.getGroup(); -// PALRepositoryPropertyDao dao = new PALRepositoryPropertyDao(); -// List propertys = dao.getPropertysByPlid(plModel.getId(), null); - List propertys = PALRepositoryPropertyCache.getPropertyByPlId(plModel.getId()); + PALRepositoryPropertyDao dao = new PALRepositoryPropertyDao(); + List propertys = dao.getPropertysByPlid(plModel.getId(), null); + //List propertys = PALRepositoryPropertyCache.getPropertyByPlId(plModel.getId()); // 排序 propertys.sort((p1, p2) -> (sortAttrMap.containsKey(p1.getPropertyId()) ? sortAttrMap.get(p1.getPropertyId()) : 0) - (sortAttrMap.containsKey(p2.getPropertyId()) ? sortAttrMap.get(p2.getPropertyId()) : 0));