文档
测试

课程目录学习历史列表

POST
/api/user/study/progress/selectLog

接口描述

查询用户历史课程目录学习记录

请求头

参数名
类型
描述
必填
Content-Type
String
application/json
必填
token
string
必填

请求参数

参数名
类型
描述
必填
pageNo
int
当前页数 示例:1
必填
pageSize
int
每页数量 示例:10
必填
college_id
string
学院id
必填
student_id
string
学员id
必填
station_id
string
课程目录id
可选

请求示例

``` { "pageNo":1, "pageSize":10, "college_id": "", "station_id": "", "student_id": "" } ```

响应参数

参数名
类型
描述
必填
flag
int
返回状态 示例:0
必填
msg
string
返回消息 示例:success
必填
abid
string
必填
val
object
数据字典
必填
pageNo
int
序号
必填
pageSize
int
页数
必填
size
int
总数量
必填
vals
array
数据列表
必填
id
string
id
必填
num
string
第几次学习
必填
arrange_date
string
安排日期
必填
complete_date
string
计划完成日期
必填
station_id
string
课程目录id
必填
station_name
string
课程目录名称
必填
student_id
string
学员id
必填
study_schedule
string
学习进度 示例:50
必填
study_status
string
学习状态。0:已完成;1:超前;2:落后
必填
unBind_date
string
解绑时间
必填

返回示例

```golang { "flag": 0, "msg": "success", "abid": "", "val": { "pageNo": 0, "pageSize": 0, "size": 5, "vals": [ { "arrange_date": "2021-07-28", "complete_date": "2021-11-28", "id": "129ceb081751d0c530a14967c748d7c9", "station_id": "8429de53c014905cc348085f9fd01c7d", "station_name": "咯莫你问我", "student_id": "6cb4cef049e0a031930eaf97d48f13be", "study_schedule": "50", "study_status": "1", "unBind_date": "2021-07-29 09:53:12", "num": "2" } ] } } ```