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
| {
| "autoMove": true,
| "id": "rentingConfigId",
| "name": "rentingConfig",
| "desc": "房屋出租配置",
| "shareParam": "rentingConfigId",
| "shareColumn": "renting_config_id",
| "shareName": "user",
| "tableName": "renting_config",
| "param": {
| "rentingConfigId": "renting_config_id",
| "rentingType": "renting_type",
| "rentingFormula": "renting_formula",
| "servicePrice": "service_price",
| "serviceOwnerRate": "service_owner_rate",
| "serviceTenantRate": "service_tenant_rate",
| "adminSeparateRate": "admin_separate_rate",
| "proxySeparateRate": "proxy_separate_rate",
| "propertySeparateRate": "property_separate_rate",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "rentingType",
| "msg": "租户类型不能为空"
| },
| {
| "code": "rentingFormula",
| "msg": "计算公式不能为空"
| },{
| "code": "servicePrice",
| "msg": "服务金额不能为空"
| },{
| "code": "serviceOwnerRate",
| "msg": "业主收费率不能为空"
| },{
| "code": "serviceTenantRate",
| "msg": "租户收费率不能为空"
| },{
| "code": "adminSeparateRate",
| "msg": "运营收费率不能为空"
| },{
| "code": "proxySeparateRate",
| "msg": "代理商收费率不能为空"
| },{
| "code": "propertySeparateRate",
| "msg": "物业收费率不能为空"
| }
| ]
| }
|
|