GET api/member/loadpaperviewlist?memberId={memberId}

加载学生参与的试卷列表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
memberId

string

Required

Body Parameters

None.

Response Information

Resource Description

加载学生参与的试卷列表

JsonRtnDtoOfListOfStudentPaperViewDto
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

Collection of StudentPaperViewDto

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": [
    {
      "PaperId": "e665872c-3e59-4eaa-90f5-b3f30fe39a9b",
      "PaperName": "sample string 2"
    },
    {
      "PaperId": "e665872c-3e59-4eaa-90f5-b3f30fe39a9b",
      "PaperName": "sample string 2"
    }
  ]
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":[{"PaperId":"e665872c-3e59-4eaa-90f5-b3f30fe39a9b","PaperName":"sample string 2"},{"PaperId":"e665872c-3e59-4eaa-90f5-b3f30fe39a9b","PaperName":"sample string 2"}]}

application/xml, text/xml

Sample:
<JsonRtnDtoOfArrayOfStudentPaperViewDtov3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>
    <StudentPaperViewDto>
      <PaperId>e665872c-3e59-4eaa-90f5-b3f30fe39a9b</PaperId>
      <PaperName>sample string 2</PaperName>
    </StudentPaperViewDto>
    <StudentPaperViewDto>
      <PaperId>e665872c-3e59-4eaa-90f5-b3f30fe39a9b</PaperId>
      <PaperName>sample string 2</PaperName>
    </StudentPaperViewDto>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfArrayOfStudentPaperViewDtov3CTEUQJ>

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

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":[{"PaperId":"e665872c-3e59-4eaa-90f5-b3f30fe39a9b","PaperName":"sample string 2"},{"PaperId":"e665872c-3e59-4eaa-90f5-b3f30fe39a9b","PaperName":"sample string 2"}]});