POST api/Mine/LearningLogActualExam
学习记录功能之获取学员曾测试过的真题试卷列表
Request Information
URI Parameters
None.
Body Parameters
获取条件
PM_LearningLog| Name | Description | Type | Additional information |
|---|---|---|---|
| PageIndex |
要获取数据的页码[默认:1] |
integer |
None. |
| PageSize |
每页要获取的数据条数[默认:10] |
integer |
None. |
| UserToken |
当前登录用户的UserToken,由服务端在用户登录成功之后生成,并在整个访问过程中回传 |
string |
None. |
| DomainName |
来访域名(用户访问该站点时输入的域名) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageIndex": 1,
"PageSize": 2,
"UserToken": "sample string 3",
"DomainName": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseModelOfAM_LearningLog2018ActualExam| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | AM_LearningLog2018ActualExam |
None. |
|
| State | integer |
None. |
|
| Msg |
返回的错误或描述信息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"TotalPage": 1,
"ListResult": [
{
"ExerciseTitle": "sample string 1",
"ExerciseId": 2,
"ActualQueMockExamId": 3,
"AnswerRightAmount": 4,
"QSSumAmout": 5,
"MockScore": 6.1,
"WithTime": 7,
"LimitTime": 8,
"ExerciseMode": 1,
"BeginTime": "2026-03-12T01:06:04.3862529+08:00",
"BeginTime4View": "sample string 10"
},
{
"ExerciseTitle": "sample string 1",
"ExerciseId": 2,
"ActualQueMockExamId": 3,
"AnswerRightAmount": 4,
"QSSumAmout": 5,
"MockScore": 6.1,
"WithTime": 7,
"LimitTime": 8,
"ExerciseMode": 1,
"BeginTime": "2026-03-12T01:06:04.3862529+08:00",
"BeginTime4View": "sample string 10"
}
]
},
"State": 1,
"Msg": "sample string 2"
}