文档
测试

分页查看某教师的课程列表

GET
localhost:88/api/course/spuinfo/list/course/info/{teacherId}

接口描述

分页查看某教师的课程列表

请求参数

参数名
类型
描述
必填
teacherId
Long
教师id
必填
key
String
检索关键字
必填
page
Integer
页数
必填
limit
Integer
每页个数
必填
order
asc/desc
排序升序、降序
必填

说明 / 示例

```json { "msg": "success", "code": 0, "page": { "totalCount": 2, "pageSize": 10, "totalPage": 1, "currPage": 1, "list": [ { "id": 1, "spuName": "测试课程哦", "username": "sgl", "catalog": "其他/其他/其他", "school": "网易课程", "publishStatus": 1, "createTime": "2021-07-15 00:00:00", "updateTime": "2021-07-16 00:00:00", "defaultImg": null }, { "id": 2, "spuName": "成功学", "username": "sgl", "catalog": "其他/其他/其他", "school": "网易课程", "publishStatus": 1, "createTime": "2021-07-15 00:00:00", "updateTime": "2021-07-15 00:00:00", "defaultImg": null } ] } } ```