新增或者编辑报修信息
开发中POST
/repair最后修改时间: 1 年前
请求参数
Body 参数application/json
id
string
可选
主键id,保存时,必有
houseId
string
必需
已审核通过的房屋id
repairItemId
string
维修项目code
mobile
string
手机号
appointment
string
预约日期
默认值:
2022-10-01
description
string
必需
问题描述-做多200字
>= 1 字符<= 200 字符
attachment
array [object {2}]
附件信息,0-9个
>= 0 items<= 9 items
id
string
附件id
url
string
附件url
示例
{
"id": "string",
"houseId": "string",
"repairItemId": "string",
"mobile": "string",
"appointment": "2022-10-01",
"description": "string",
"attachment": [
{
"id": "string",
"url": "string"
}
]
}
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
number
必需
正常返回10000,其他表示错误
message
string
接口信息
data
object
必需
id
string
id
示例
{
"code": 0,
"message": "string",
"data": {
"id": "string"
}
}
最后修改时间: 1 年前