新增产品品类
POST
/api/v1/things/product/category/create请求参数
Body 参数application/json
id
integer <int64>
可选
parentID
integer <int64>
可选
idPath
array[integer <int64>]
只读
name
string
可选
desc
string
描述
headImg
string
用户头像
isUpdateHeadImg
boolean
用户头像
isLeaf
integer <int64>
可选
deviceCount
integer <int64>
设备数量
children
array[object (ProductCategory) {10}]
可选
id
integer <int64>
可选
parentID
integer <int64>
可选
idPath
array[integer <int64>]
只读
name
string
可选
desc
string
描述
headImg
string
用户头像
isUpdateHeadImg
boolean
用户头像
isLeaf
integer <int64>
可选
deviceCount
integer <int64>
设备数量
children
array[object (ProductCategory) {10}]
可选
示例
{
"id": 0,
"parentID": 0,
"idPath": [
0
],
"name": "string",
"desc": "string",
"headImg": "string",
"isUpdateHeadImg": true,
"isLeaf": 0,
"deviceCount": 0,
"children": [
{}
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
A successful response.
数据结构
code
integer
返回code
默认值:
200
msg
string
返回的消息
示例
{
"code": "200",
"msg": "string"
}
最后修改时间: 3 天前