1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
| {
| "templateName":"服务绑定",
| "templateCode":"serviceRegister",
| "templateKey":"id",
| "templateKeyName":"绑定ID",
| "searchCode": "name",
| "searchName": "服务名称",
| "conditions": [
| {
| "name": "应用名称",
| "inputType": "choose",
| "componentName": "chooseApp",
| "code": "appName",
| "key": "appId",
| "whereCondition": "equal"
| },
| {
| "name": "服务名称",
| "inputType": "input",
| "code": "serviceName",
| "whereCondition": "like"
| },
| {
| "name": "服务编码",
| "inputType": "input",
| "code": "serviceCode",
| "whereCondition": "like"
| },
| {
| "name": "调用地址",
| "inputType": "input",
| "code": "serviceUrl",
| "whereCondition": "like"
| }
| ],
| "columns":[
| {
| "code":"appId",
| "cnCode":"应用ID",
| "desc":"必填,请填写应用ID",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxLength",
| "limitParam":"50",
| "limitErrInfo":"应用ID不能超过50",
| "show": true
| },
| {
| "code":"serviceId",
| "cnCode":"服务ID",
| "desc":"必填,请填写服务ID",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"input",
| "limit":"maxin",
| "limitParam":"2,50",
| "limitErrInfo":"服务ID必须在2至50字符之间",
| "show": true
| },
| {
| "code":"orderTypeCd",
| "cnCode":"订单类型",
| "desc":"必填,请填写订单类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType":"select",
| "selectValue":"Q,D",
| "selectValueName":"查询,业务受理",
| "limit":"maxin",
| "limitParam":"1,4",
| "limitErrInfo":"订单类型错误",
| "show": true
| },
|
| {
| "code":"invokeLimitTimes",
| "cnCode":"调用次数",
| "desc":"必填,请填写调用次数",
| "required":true,
| "hasDefaultValue":true,
| "defaultValue":"1000",
| "inputType":"input",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"调用次数错误",
| "show": false
| },
| {
| "code":"invokeModel",
| "cnCode":"调用方式",
| "desc":"可填,请填写消息队列,订单在异步调用时使用",
| "required":true,
| "hasDefaultValue":false,
| "defaultValue":"",
| "inputType":"select",
| "selectValue":"S,A",
| "selectValueName":"同步方式,异步方式",
| "limit":"maxLength",
| "limitParam":"50",
| "limitErrInfo":"消息队列不能超过50",
| "show": false
| }
| ]
| }
|
|