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
| {
| "autoMove": true,
| "id": "rentingId",
| "name": "rentingPool",
| "desc": "房屋出租",
| "shareParam": "rentingId",
| "shareColumn": "renting_id",
| "shareName": "user",
| "tableName": "renting_pool",
| "param": {
| "rentingId": "renting_id",
| "rentingTitle": "renting_title",
| "roomId": "room_id",
| "communityId": "community_id",
| "price": "price",
| "paymentType": "payment_type",
| "checkInDate": "check_in_date",
| "rentingConfigId": "renting_config_id",
| "rentingDesc": "renting_desc",
| "state": "state",
| "ownerName": "owner_name",
| "ownerTel": "owner_tel",
| "longitude": "longitude",
| "latitude": "latitude",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "rentingTitle",
| "msg": "租户名称不能为空"
| },
| {
| "code": "roomId",
| "msg": "房屋ID不能为空"
| },{
| "code": "communityId",
| "msg": "小区ID不能为空"
| },{
| "code": "price",
| "msg": "价格不能为空"
| },{
| "code": "paymentType",
| "msg": "付费方式不能为空"
| },{
| "code": "checkInDate",
| "msg": "入住时间不能为空"
| },{
| "code": "rentingConfigId",
| "msg": "租户配置不能为空"
| },{
| "code": "ownerName",
| "msg": "业主名称不能为空"
| },{
| "code": "ownerTel",
| "msg": "业主手机号不能为空"
| }
| ]
| }
|
|