From babaf2f7d67fe883f631e2a63ccf0a9b9b203fbd Mon Sep 17 00:00:00 2001 From: "wei.peng" <123456> Date: Sat, 12 Oct 2019 22:08:03 +0800 Subject: [PATCH] =?UTF-8?q?WebService=20=E5=AE=A2=E6=88=B7=E7=AB=AFXml?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E8=B0=83=E8=AF=95=E6=88=90=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pojo/model/softswitch/SuitParamModel.java | 23 ++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/modules/i3plus-pojo-model/src/main/java/cn/estsh/i3plus/pojo/model/softswitch/SuitParamModel.java b/modules/i3plus-pojo-model/src/main/java/cn/estsh/i3plus/pojo/model/softswitch/SuitParamModel.java index 3a2a57c..ec7dd0a 100644 --- a/modules/i3plus-pojo-model/src/main/java/cn/estsh/i3plus/pojo/model/softswitch/SuitParamModel.java +++ b/modules/i3plus-pojo-model/src/main/java/cn/estsh/i3plus/pojo/model/softswitch/SuitParamModel.java @@ -29,8 +29,11 @@ public class SuitParamModel { private String pathKey; /* 标签内容 */ private String vaule; - /* 标签类型 Default:PARAM_VALUE_TYPE.STRING */ - private Integer type; // BlockSoftSwitchEnumUtil.PARAM_VALUE_TYPE + /** + * 标签 内容 类型 暂未定义 + * 设计思路: type 说明这个字段属于什么类型的值, 例如 Date,BigDecimal 等特殊类型标注 + */ + private String type; /* 标签属性 */ private Map attr; @@ -38,4 +41,20 @@ public class SuitParamModel { private SuitParamModel parent; /* 标签子集 */ private List childList; + + @Override + public String toString() { + return "SuitParamModel{" + + "tagName='" + tagName + '\'' + + ", classPath='" + classPath + '\'' + + ", methodName='" + methodName + '\'' + + ", id='" + id + '\'' + + ", name='" + name + '\'' + + ", pathKey='" + pathKey + '\'' + + ", vaule='" + vaule + '\'' + + ", type=" + type + + ", attr=" + attr + + ", childList=" + childList + + '}'; + } }