GET {version}/User/GetMyExamRecordSubject?pageIndex={pageIndex}&pageSize={pageSize}
做题记录-科目
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageIndex | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 10 |
|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
ApiResultOfListOfMyExamSubjectDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Message | string |
None. |
|
| Data | Collection of MyExamSubjectDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"Message": "sample string 2",
"Data": [
{
"ExamID": 1,
"SubjectName": "sample string 1",
"Num": 1,
"SumNum": 1,
"RecDate": "sample string 2"
},
{
"ExamID": 1,
"SubjectName": "sample string 1",
"Num": 1,
"SumNum": 1,
"RecDate": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<ApiResultOfArrayOfMyExamSubjectDtoF2xKsV4k xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TinyFx.Web.Results">
<Code>sample string 1</Code>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Eshikao.Models">
<d2p1:MyExamSubjectDto>
<d2p1:ExamID>1</d2p1:ExamID>
<d2p1:Num>1</d2p1:Num>
<d2p1:RecDate>sample string 2</d2p1:RecDate>
<d2p1:SubjectName>sample string 1</d2p1:SubjectName>
<d2p1:SumNum>1</d2p1:SumNum>
</d2p1:MyExamSubjectDto>
<d2p1:MyExamSubjectDto>
<d2p1:ExamID>1</d2p1:ExamID>
<d2p1:Num>1</d2p1:Num>
<d2p1:RecDate>sample string 2</d2p1:RecDate>
<d2p1:SubjectName>sample string 1</d2p1:SubjectName>
<d2p1:SumNum>1</d2p1:SumNum>
</d2p1:MyExamSubjectDto>
</Data>
<Message>sample string 2</Message>
</ApiResultOfArrayOfMyExamSubjectDtoF2xKsV4k>