- j8
- j4
- 数据管理
- 组织管理
- c2
- j2
- j6
- j7
- c4
- c5
- j1
- c6
- c1
- 房产管理
- 业主成员
- 业主信息
- 房屋管理
- j3
- c7
- j5
- c3
- 未命名接口GET
新增楼栋
POST
/floor/add-floor
请求参数
Body 参数application/json
floor_id
string
楼栋ID
b_id
string
可选
floor_num
string
楼栋编号
name
string
楼栋名称
user_id
string
可选
remark
string
可选
create_time
string
可选
community_id
string
小区ID
status_cd
string
可选
floor_area
string
可选
seq
integer
可选
>= -2147483648<= 2147483647
示例
{
"floor_id": "string",
"b_id": "string",
"floor_num": "string",
"name": "string",
"user_id": "string",
"remark": "string",
"create_time": "string",
"community_id": "string",
"status_cd": "string",
"floor_area": "string",
"seq": -2147483648
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/floor/add-floor' \
--header 'Content-Type: application/json' \
--data-raw '{
"floor_id": "string",
"b_id": "string",
"floor_num": "string",
"name": "string",
"user_id": "string",
"remark": "string",
"create_time": "string",
"community_id": "string",
"status_cd": "string",
"floor_area": "string",
"seq": -2147483648
}'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
>= -2147483648<= 2147483647
默认值:
10000
message
string
提示信息
默认值:
success
data
string
数据对象
示例
{
"code": 10000,
"message": "success",
"data": "string"
}
修改于 2025-06-05 14:54:29