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
| {
| "templateName":"微信模板",
| "directories": "property",
| "templateCode":"wechatSmsTemplate",
| "templateKey":"templateId",
| "templateKeyName":"ID",
| "searchCode": "templateId",
| "searchName": "ID",
| "conditions": [
| {
| "name": "微信模板ID",
| "inputType": "input",
| "code": "smsTemplateId",
| "whereCondition": "equal"
| },
| {
| "name": "模板类型",
| "inputType": "select",
| "selectValue":"10001,10002,10003",
| "selectValueName":"欠费催缴,停电通知,停水通知",
| "code": "templateType",
| "whereCondition": "equal"
| },
| {
| "name": "模板编码",
| "inputType": "input",
| "code": "templateId",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"templateType",
| "cnCode":"模板类型",
| "desc":"必填,请填写模板类型",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"10001,10002,10003",
| "selectValueName":"欠费催缴,停电通知,停水通知",
| "limit":"num",
| "limitParam":"",
| "limitErrInfo":"模板格式错误",
| "show": true
| },
| {
| "code": "smsTemplateId",
| "cnCode":"微信模板ID",
| "desc":"必填,请填写微信模板ID",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"微信模板ID太长",
| "show": true
| },
| {
| "code": "remark",
| "cnCode":"说明",
| "desc":"选填,请填写说明",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"500",
| "limitErrInfo":"说明不能超过500位",
| "show": false
| }
| ]
| }
|
|