From d64d794623ab00a361afa626eadb30c0840a7cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A2=81=E4=B8=9C=E5=BC=BA?= <1559301693@qq.com> Date: Sun, 13 Jul 2025 19:06:22 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E7=89=88=E6=9C=AC=E5=8F=B7?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pal/repository/designer/util/DesignerVersionUtil.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/designer/util/DesignerVersionUtil.java b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/designer/util/DesignerVersionUtil.java index 6fabb1d5..717fc190 100644 --- a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/designer/util/DesignerVersionUtil.java +++ b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/designer/util/DesignerVersionUtil.java @@ -211,6 +211,11 @@ public class DesignerVersionUtil { JSONObject result = new JSONObject(); // 版本号 String versionNo = String.valueOf(plModel.getVersion()); + try{ + versionNo = VersionUtil.getVersionStr(plModel.getVersion()); + }catch (Exception e){ + log.error("版本号转换异常:{}", versionNo); + } result.put("versionNo", versionNo); result.put("plId", plId); result.put("updateTime", getModifyDate(plModel.getModifyDate()));