文档
测试

查询首页用户自定义排序分类列表

GET
/app/wtCourse/selectMhSortPlaced

请求头

参数名
类型
描述
必填
token
String
必填

响应参数

参数名
类型
描述
必填
code
int
状态码 0 成功 其他失败
必填
msg
String
响应信息
必填
obj
Array
用户保存的自定义排序二级分类数据
必填
id
int
分类id
必填
name
String
分类名称
必填
cid
int
父分类id
必填
img
String
分类图片
必填
status
int
状态
必填
addtime
String
创建时间
必填
sort
int
排序
必填
type
int
必填
doCount
int
必填
totalTopicNum
int
必填
answerTotalNum
int
必填
pid
int
父类id 只有二级分类才有
必填
childrenTypes
Array
null 分类下子类列表
必填
subjectList
Array
必填

说明 / 示例

## `返回示例` ```java { "code": 0, "msg": "请求成功", "obj": [ { "id": 31, "name": "幼儿综合素质", "cid": 0, "img": "xxx", "status": "1", "addtime": "2021-03-27 15:47:25", "sort": 2, "type": 1, "doCount": 0, "totalTopicNum": 0, "answerTotalNum": 0, "pid": null, "childrenTypes": null, "subjectList": null }, { "id": 154, "name": "幼儿笔试", "cid": 0, "img": "http://cunchu.yudingketang.com/16280017959028138.jpg", "status": "1", "addtime": "2021-05-26 12:35:49", "sort": 1, "type": 1, "doCount": 0, "totalTopicNum": 0, "answerTotalNum": 0, "pid": null, "childrenTypes": null, "subjectList": null } ] } ``` ```