POST api/ActualQS/Report4ThreeLevelCategory
获取真题测试结果按三级题目分类统计情况
Request Information
URI Parameters
None.
Body Parameters
成绩单数据获取条件
PM_ActualReportCard| Name | Description | Type | Additional information |
|---|---|---|---|
| ActualQueId |
真题标识 |
integer |
None. |
| MockExamId |
真题练习行为标识,用于唯一性区分每次真题练习 |
integer |
None. |
| WithTime |
真题练习所用时间(秒),>0表示做完题后执行交卷操作到服务端,=0表示无提交动作只访问成绩单。 |
integer |
None. |
| UserToken |
当前登录用户的UserToken,由服务端在用户登录成功之后生成,并在整个访问过程中回传 |
string |
None. |
| DomainName |
来访域名(用户访问该站点时输入的域名) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ActualQueId": 1,
"MockExamId": 2,
"WithTime": 3,
"UserToken": "sample string 4",
"DomainName": "sample string 5"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseModelOfAM_ActualQSReport4ThreeLevelCategory| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | AM_ActualQSReport4ThreeLevelCategory |
None. |
|
| State | integer |
None. |
|
| Msg |
返回的错误或描述信息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"MockResultAnalysis1st": [
{
"Score": 1.0,
"AnswerRightAmount": 2,
"WithTime": 3,
"AccuracyRate": 4,
"ParentCategoryId": 5,
"TotalAmount": 6,
"CategoryName": "sample string 7",
"CategoryId": 8
},
{
"Score": 1.0,
"AnswerRightAmount": 2,
"WithTime": 3,
"AccuracyRate": 4,
"ParentCategoryId": 5,
"TotalAmount": 6,
"CategoryName": "sample string 7",
"CategoryId": 8
}
],
"MockResultAnalysis2nd": [
{
"Score": 1.0,
"AnswerRightAmount": 2,
"WithTime": 3,
"AccuracyRate": 4,
"ParentCategoryId": 5,
"TotalAmount": 6,
"CategoryName": "sample string 7",
"CategoryId": 8
},
{
"Score": 1.0,
"AnswerRightAmount": 2,
"WithTime": 3,
"AccuracyRate": 4,
"ParentCategoryId": 5,
"TotalAmount": 6,
"CategoryName": "sample string 7",
"CategoryId": 8
}
],
"MockResultAnalysis3nd": [
{
"Score": 1.0,
"AnswerRightAmount": 2,
"WithTime": 3,
"AccuracyRate": 4,
"ParentCategoryId": 5,
"TotalAmount": 6,
"CategoryName": "sample string 7",
"CategoryId": 8
},
{
"Score": 1.0,
"AnswerRightAmount": 2,
"WithTime": 3,
"AccuracyRate": 4,
"ParentCategoryId": 5,
"TotalAmount": 6,
"CategoryName": "sample string 7",
"CategoryId": 8
}
]
},
"State": 1,
"Msg": "sample string 2"
}