Appearance
用户培训项目数据
GET /datas/user_data/user_project_plan
权限
- 需要认证
请求参数
字段 | 类型 | 必选 | 描述 | 示例 |
---|---|---|---|---|
userId | int | 是 | 用户ID | 1 |
categoryCode | string | 否 | 培训项目分类编码 | FLX |
projectPlanId | string | 否 | 培训项目ID | 1 |
createdTime | string | 否 | 培训项目创建时间 | 2021-06-29 00:00:00 - 2021-06-29 12:00:00 |
startTime | string | 否 | 培训项目开始时间 | 2021-06-29 00:00:00 - 2021-06-29 12:00:00 |
joinedTime | string | 否 | 培训项目加入时间 | 2021-06-29 00:00:00 - 2021-06-29 12:00:00 |
offset | int | 否 | 分页偏离量 | 0 |
limit | int | 否 | 分页数量 | 10 |
响应
json
{
"data": [
{
"projectPlanId": "408",
"createdTime": "2021-09-10T10:05:53+08:00",
"name": "test",
"startTime": "2021-09-16T00:00:00+08:00",
"endTime": "2021-10-02T00:00:00+08:00",
"templateId": "0",
"templateName": "",
"onlineCourseNum": 1,
"onlineCourseLearnTime": 0,
"onlineCourseFinishedRate": "0%",
"finishedOnlineCourseNum": "0",
"offlineCoursePassedHomeworkRate": 0,
"offlineCourseAttendRate": 0,
"offlineCourseTime": 0,
"offlineExamPassRate": "0%",
"onlineExamPassRate": "0%",
"credit": 0,
"CertificateRecord": []
}
],
"paging": {
"total": 1,
"offset": 0,
"limit": 10
}
}
字段说明
字段 | 类型 | 描述 |
---|---|---|
projectPlanId | int string | 培训项目ID |
createdTime | string | 培训项目创建时间 |
name | string | 培训项目名称 |
startTime | string | 培训项目开始时间 |
endTime | string | 培训项目结束时间 |
templateId | int string | 模板ID |
templateName | string | 模板名称 |
onlineCourseNum | int string | 线上课程总数 |
onlineCourseLearnTime | int string | 线上课程学习时长 |
onlineCourseFinishedRate | string | 线上课程完成度 |
finishedOnlineCourseNum | int string | 线上课程完成数 |
offlineCoursePassedHomeworkRate | string | 线下作业通过率 |
offlineCourseAttendRate | string | 线下课程出勤率 |
offlineCourseTime | string | 线下课程获得学时 |
offlineExamPassRate | string | 线下考试通过率 |
onlineExamPassRate | string | 线上考试通过率 |
CertificateRecord | CertificateRecord结构体 | 获得证书编码与名称 |
credit | int string | 获得的学分 |