shane
2021-08-20 ab6a423cf604b83f06b5768dbc162ece744a32d9
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
{
  "templateName": "流程实例",
  "templateCode": "oaWorkflow",
  "templateKey": "flowId",
  "templateKeyName": "工作流ID",
  "searchCode": "flowId",
  "searchName": "工作流ID",
  "directories": "property",
  "conditions": [
    {
      "name": "流程名称",
      "inputType": "input",
      "code": "flowName",
      "whereCondition": "equal"
    },
    {
      "name": "描述",
      "inputType": "input",
      "code": "describle",
      "whereCondition": "equal"
    },
    {
      "name": "流程类型",
      "inputType": "select",
      "selectValue":"1001,2002",
      "selectValueName":"国内,国外",
      "code": "flowType",
      "whereCondition": "equal"
    }
  ],
  "columns": [
    {
      "code": "flowName",
      "cnCode": "流程名称",
      "desc": "必填,请填写流程名称",
      "required": true,
      "hasDefaultValue": false,
      "inputType": "input",
      "limit": "maxLength",
      "limitParam": "64",
      "limitErrInfo": "流程名称超过64位",
      "show": true
    },
    {
      "code": "flowType",
      "cnCode": "流程类型",
      "desc": "必填,请填写流程类型",
      "required": true,
      "hasDefaultValue": false,
      "inputType": "select",
      "selectValue":"1001",
      "selectValueName":"普通流程",
      "limit": "maxLength",
      "limitParam": "12",
      "limitErrInfo": "流程类型不能为空",
      "show": true
    },
    {
      "code": "describle",
      "cnCode": "备注",
      "desc": "可填,请填写备注",
      "required": false,
      "hasDefaultValue": false,
      "defaultValue": "",
      "inputType": "input",
      "limit": "maxLength",
      "limitParam": "200",
      "limitErrInfo": "备注内容不能超过200",
      "show": false
    }
  ]
}