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
| {
| "autoMove": true,
| "id": "attrId",
| "name": "rentingPoolAttr",
| "desc": "出租房屋属性",
| "shareParam": "communityId",
| "shareColumn": "community_id",
| "shareName": "user",
| "tableName": "renting_pool_attr",
| "param": {
| "rentingId": "renting_id",
| "attrId": "attr_id",
| "specCd": "spec_cd",
| "value": "value",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "rentingId",
| "msg": "出租房屋ID不能为空"
| },
| {
| "code": "specCd",
| "msg": "用户规格不能为空"
| }
| ]
| }
|
|