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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
| {
| "param": {
| "section": "section",
| "remark": "remark",
| "statusCd": "status_cd",
| "roomSubType": "room_sub_type",
| "roomArea": "room_area",
| "userId": "user_id",
| "roomId": "room_id",
| "layer": "layer",
| "feeCoefficient": "fee_coefficient",
| "builtUpArea": "built_up_area",
| "roomNum": "room_num",
| "unitId": "unit_id",
| "state": "state",
| "communityId": "community_id",
| "apartment": "apartment",
| "roomType": "room_type",
| "roomRent": "room_rent"
| },
| "name": "room",
| "shareColumn": "community_id",
| "id": "roomId",
| "shareName": "community",
| "autoMove": true,
| "required": [
| {
| "msg": "房屋ID不能为空",
| "code": "roomId"
| },
| {
| "msg": "房屋编号不能为空",
| "code": "roomNum"
| },
| {
| "msg": "单元ID不能为空",
| "code": "unitId"
| },
| {
| "msg": "层数不能为空",
| "code": "layer"
| },
| {
| "msg": "户型不能为空",
| "code": "apartment"
| },
| {
| "msg": "建筑面积不能为空",
| "code": "builtUpArea"
| },
| {
| "msg": "算费系数不能为空",
| "code": "feeCoefficient"
| },
| {
| "msg": "用户ID不能为空",
| "code": "userId"
| },
| {
| "msg": "数据状态,详细参考c_status表,S 保存,0, 在用 1失效不能为空",
| "code": "statusCd"
| },
| {
| "msg": "房屋状态,如房屋出售等,请查看state 表不能为空",
| "code": "state"
| },
| {
| "msg": "房屋类型不能为空",
| "code": "roomType"
| },
| {
| "msg": "房屋类型 110 住宅房屋,119 办公室 120 宿舍不能为空",
| "code": "roomSubType"
| },
| {
| "msg": "室内面积不能为空",
| "code": "roomArea"
| },
| {
| "msg": "租金不能为空",
| "code": "roomRent"
| }
| ],
| "desc": "房屋",
| "shareParam": "communityId",
| "tableName": "building_room"
| }
|
|