WebService 客户端Xml参数调试成功

yun-zuoyi
wei.peng 6 years ago
parent 61a38c9acd
commit babaf2f7d6

@ -29,8 +29,11 @@ public class SuitParamModel {
private String pathKey; private String pathKey;
/* 标签内容 */ /* 标签内容 */
private String vaule; private String vaule;
/* 标签类型 Default:PARAM_VALUE_TYPE.STRING */ /**
private Integer type; // BlockSoftSwitchEnumUtil.PARAM_VALUE_TYPE *
* type Date,BigDecimal
*/
private String type;
/* 标签属性 */ /* 标签属性 */
private Map<String,String> attr; private Map<String,String> attr;
@ -38,4 +41,20 @@ public class SuitParamModel {
private SuitParamModel parent; private SuitParamModel parent;
/* 标签子集 */ /* 标签子集 */
private List<SuitParamModel> childList; private List<SuitParamModel> 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 +
'}';
}
} }

Loading…
Cancel
Save