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
| {
| "templateName":"催缴记录",
| "templateCode":"feeCollectionOrder",
| "templateKey":"orderId",
| "templateKeyName":"记录编号",
| "searchCode": "orderId",
| "searchName": "记录编号",
| "directories": "property",
| "conditions": [
| {
| "name": "名称",
| "inputType": "input",
| "code": "collectionName",
| "whereCondition": "equal"
| },{
| "name": "催缴人",
| "inputType": "input",
| "code": "staffName",
| "whereCondition": "equal"
| },{
| "name": "催缴方式",
| "inputType": "input",
| "code": "collectionWay",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code":"collectionName",
| "cnCode":"催缴名称",
| "desc":"必填,请填写催缴名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"催缴名称超过64位",
| "show": true
| },
| {
| "code": "staffName",
| "cnCode":"催缴人",
| "desc":"必填,请填写催缴人",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"催缴人不能为空",
| "show": true
| },
| {
| "code": "collectionWay",
| "cnCode":"催缴方式",
| "desc":"必填,请填写催缴方式",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "select",
| "selectValue":"001,002,003",
| "selectValueName":"仅短信方式,短信微信方式,仅微信方式",
| "limit":"maxLength",
| "limitParam":"64",
| "limitErrInfo":"催缴方式超过64位",
| "show": true
| },
| {
| "code":"remark",
| "cnCode":"备注",
| "desc":"可填,请填写备注",
| "required":false,
| "hasDefaultValue":false,
| "defaultValue":"",
| "inputType":"input",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"备注内容不能超过200",
| "show": false
| }
| ]
| }
|
|