From 07253858dbc9e096d997f1cb97b4c98663efda4e Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Mon, 15 Jul 2024 18:53:57 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E5=90=8E=E7=AB=AF-sla?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E5=B7=A5=E5=8D=95=E9=A2=9D=E5=A4=96=E5=BB=B6?= =?UTF-8?q?=E8=BF=9F=E8=B6=85=E6=97=B6=E6=97=B6=E9=97=B4=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1199325999235072]后端-sla支持工单额外延迟超时时间点 http://192.168.0.96:8090/demo/rdm.html#/task-detail/939050947543040/939050947543050/1199325999235072 --- .../framework/form/attribute/core/FormHandlerBase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/neatlogic/framework/form/attribute/core/FormHandlerBase.java b/src/main/java/neatlogic/framework/form/attribute/core/FormHandlerBase.java index 530816352..fa64dec75 100644 --- a/src/main/java/neatlogic/framework/form/attribute/core/FormHandlerBase.java +++ b/src/main/java/neatlogic/framework/form/attribute/core/FormHandlerBase.java @@ -152,9 +152,9 @@ public abstract class FormHandlerBase implements IFormAttributeHandler, IFormAtt return (String) source; } else if (source instanceof JSONArray && CollectionUtils.isNotEmpty((JSONArray) source)) { return ((JSONArray) source).getString(0); + } else { + return source.toString(); } - - throw new AttributeValidException(attributeLabel); } protected JSONArray convertToJSONArray(Object source, String attributeLabel) { -- Gitee