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
| {
| "param": {
| "skipLevel": "skip_level",
| "describle": "describle",
| "statusCd": "status_cd",
| "communityId": "community_id",
| "storeId": "store_id",
| "flowId": "flow_id",
| "flowName": "flow_name",
| "flowType": "flow_type",
| "processDefinitionKey": "process_definition_key"
| },
| "name": "workflow",
| "shareColumn": "community_id",
| "id": "flowId",
| "shareName": "common",
| "autoMove": true,
| "required": [
| {
| "msg": "流程ID不能为空",
| "code": "flowId"
| },
| {
| "msg": "流程名称不能为空",
| "code": "flowName"
| },
| {
| "msg": "跳过不能为空",
| "code": "skipLevel"
| },
| {
| "msg": "小区ID不能为空",
| "code": "communityId"
| },
| {
| "msg": "商户ID,用来做分区不能为空",
| "code": "storeId"
| },
| {
| "msg": "数据状态不能为空",
| "code": "statusCd"
| },
| {
| "msg": "流程类型不能为空",
| "code": "flowType"
| }
| ],
| "desc": "工作流程",
| "shareParam": "communityId",
| "tableName": "workflow"
| }
|
|