GET {version}/Course/GetCoursePlanPagerListByID?courseId={courseId}&pageIndex={pageIndex}&pageSize={pageSize}
获得课程计划表
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| courseId |
课程编号 |
integer |
Required |
| pageIndex |
当前第几页 |
integer |
Default value is 1 |
| pageSize |
每页显示记录数 |
integer |
Default value is 10 |
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of CoursePlanDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
课程表编码 |
integer |
None. |
| Content |
课程内容 |
string |
None. |
| TeacherName |
上课老师 |
string |
None. |
| DocumentUrl |
下载讲义 |
string |
None. |
| StartTime |
限购开始时间 |
date |
None. |
| EndTime |
现购结束时间 |
date |
None. |
| FormatDate |
格式化显示时间 |
string |
None. |
| Type |
直播类型: 4-直播 5-伪直播 6-点播 |
integer |
None. |
| IsPlay |
是否能播放: true可播放,false:不能播放 |
boolean |
None. |
| VideoStatusText | string |
None. |
|
| VideoStatus |
0-回放 1-直播 |
integer |
None. |
| CategoryName |
分类名称 |
string |
None. |
| CategoryCode |
分类ID |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Content": "sample string 2",
"TeacherName": "sample string 3",
"DocumentUrl": "sample string 4",
"StartTime": "2026-01-31T18:04:43.6129051+08:00",
"EndTime": "2026-01-31T18:04:43.6129051+08:00",
"FormatDate": "sample string 5",
"Type": 6,
"IsPlay": true,
"VideoStatusText": "sample string 8",
"VideoStatus": 9,
"CategoryName": "sample string 10",
"CategoryCode": "sample string 11"
},
{
"ID": 1,
"Content": "sample string 2",
"TeacherName": "sample string 3",
"DocumentUrl": "sample string 4",
"StartTime": "2026-01-31T18:04:43.6129051+08:00",
"EndTime": "2026-01-31T18:04:43.6129051+08:00",
"FormatDate": "sample string 5",
"Type": 6,
"IsPlay": true,
"VideoStatusText": "sample string 8",
"VideoStatus": 9,
"CategoryName": "sample string 10",
"CategoryCode": "sample string 11"
}
]
application/xml, text/xml
Sample:
<ArrayOfCoursePlanDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eshikao.Models.Course">
<CoursePlanDto>
<CategoryCode>sample string 11</CategoryCode>
<CategoryName>sample string 10</CategoryName>
<Content>sample string 2</Content>
<DocumentUrl>sample string 4</DocumentUrl>
<EndTime>2026-01-31T18:04:43.6129051+08:00</EndTime>
<FormatDate>sample string 5</FormatDate>
<ID>1</ID>
<IsPlay>true</IsPlay>
<StartTime>2026-01-31T18:04:43.6129051+08:00</StartTime>
<TeacherName>sample string 3</TeacherName>
<Type>6</Type>
<VideoStatus>9</VideoStatus>
<VideoStatusText>sample string 8</VideoStatusText>
</CoursePlanDto>
<CoursePlanDto>
<CategoryCode>sample string 11</CategoryCode>
<CategoryName>sample string 10</CategoryName>
<Content>sample string 2</Content>
<DocumentUrl>sample string 4</DocumentUrl>
<EndTime>2026-01-31T18:04:43.6129051+08:00</EndTime>
<FormatDate>sample string 5</FormatDate>
<ID>1</ID>
<IsPlay>true</IsPlay>
<StartTime>2026-01-31T18:04:43.6129051+08:00</StartTime>
<TeacherName>sample string 3</TeacherName>
<Type>6</Type>
<VideoStatus>9</VideoStatus>
<VideoStatusText>sample string 8</VideoStatusText>
</CoursePlanDto>
</ArrayOfCoursePlanDto>