GET api/markretestpaper/loadrecord?paperId={paperId}&stuId={stuId}&name={name}

获取考试记录

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paperId

globally unique identifier

Required

stuId

string

Required

name

string

Required

Body Parameters

None.

Response Information

Resource Description

获取考试记录

JsonRtnDtoOfString
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": "sample string 2"
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":"sample string 2"}

application/xml, text/xml

Sample:
<JsonRtnDtoOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>sample string 2</Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfstring>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":"sample string 2"});