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
| {
| "autoMove": true,
| "id": "flowId",
| "name": "rentingPoolFlow",
| "desc": "出租流程",
| "shareParam": "communityId",
| "shareColumn": "community_id",
| "shareName": "user",
| "tableName": "renting_pool_flow",
| "param": {
| "flowId": "flow_id",
| "rentingId": "renting_id",
| "useName": "user_name",
| "userTel": "user_tel",
| "dealTime": "deal_time",
| "state": "state",
| "userRole": "user_role",
| "context": "context",
| "communityId": "community_id",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "rentingId",
| "msg": "出租不能为空"
| },
| {
| "code": "useName",
| "msg": "处理人不能为空"
| },
| {
| "code": "useTel",
| "msg": "处理人电话不能为空"
| },
| {
| "code": "dealTime",
| "msg": "处理时间不能为空"
| },
| {
| "code": "userRole",
| "msg": "处理人角色不能为空"
| },
| {
| "code": "communityId",
| "msg": "小区不能为空"
| }
| ]
| }
|
|