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
| {
| "templateName":"巡检点",
| "templateCode":"inspectionPoint",
| "templateKey":"inspectionId",
| "templateKeyName":"巡检点ID",
| "searchCode": "inspectionName",
| "searchName": "巡检点名称",
| "conditions": [
| {
| "name": "巡检点ID",
| "inputType": "input",
| "code": "inspectionId",
| "whereCondition": "equal"
| },
| {
| "name": "设备ID",
| "inputType": "input",
| "code": "machineId",
| "whereCondition": "equal"
| },
| {
| "name": "巡检点名称",
| "inputType": "input",
| "code": "inspectionName",
| "whereCondition": "equal"
| }
| ],
| "columns":[
| {
| "code": "inspection_name",
| "cnCode":"巡检点名称",
| "desc":"必填,请填写巡检点名称",
| "required":true,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"100",
| "limitErrInfo":"巡检点名称不能超过100位",
| "show": true
| },
| {
| "code": "remark",
| "cnCode":"备注",
| "desc":"必填,请填写巡检点名称",
| "required":false,
| "hasDefaultValue":false,
| "inputType": "input",
| "limit":"maxLength",
| "limitParam":"200",
| "limitErrInfo":"备注信息不能超过200位",
| "show": true
| }
| ]
| }
|
|