简要描述:
- 通过技能分类ID获取关联的需求分类
请求域名:
- http://xx.com
请求URL:
GET/&route=plugin.be-within-call.frontend.shi-fu.get-related-classify
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
cid | 是 | int | 技能分类ID |
返回示例:
正确时返回:
{
"result": 1,
"msg": "list",
"data": [
{
"id": 1,
"uniacid": 6,
"ability_category_id": 2,
"need_category_id": 1,
"need_category_ids": null,
"created_at": "2023-12-04 18:33:55",
"classify_title": "需求分类"
}
]
}
返回参数说明:
data参数说明:
参数名 | 类型 | 说明 |
---|---|---|
need_category_id | int | 需求分类ID |
classify_title | string | 分类名称 |