GET api/Index/Hot/Course
获取热门课程列表(说明:App端接口,新增需求)
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
返状态码: 200:成功。
HotCourseResult| Name | Description | Type | Additional information |
|---|---|---|---|
| data |
热门推荐课程列表 |
Collection of HotCourse |
None. |
| status |
公共返回值: 500:服务器内部错误。 |
integer |
None. |
| msg |
消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": [
{
"Course_ID": 1,
"Course_Name": "sample string 2",
"Course_Info": "sample string 3",
"Course_CoverUrl": "sample string 4",
"Total_Class": "sample string 5",
"CategoryName": "sample string 6",
"Course_New": 7,
"Course_LimitFree": 8
},
{
"Course_ID": 1,
"Course_Name": "sample string 2",
"Course_Info": "sample string 3",
"Course_CoverUrl": "sample string 4",
"Total_Class": "sample string 5",
"CategoryName": "sample string 6",
"Course_New": 7,
"Course_LimitFree": 8
}
],
"status": 1,
"msg": "sample string 2"
}