POST api/PaperReview/AuditMarkPaperSet

审核

Request Information

URI Parameters

None.

Body Parameters

AuditMarkPaperScoreSetDto
NameDescriptionTypeAdditional information
PaperId

试卷编号

globally unique identifier

None.

UserId

评审人编号

string

None.

MemberId

学生学号

string

None.

MarkPaperScoreSet

主观题打分集合

Collection of AuditMarkPaperScoreDto

None.

AuditInfo

评审信息

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PaperId": "fc09d742-ce41-4184-a799-a027952f1b17",
  "UserId": "sample string 2",
  "MemberId": "sample string 3",
  "MarkPaperScoreSet": [
    {
      "TestId": "d3a78654-938d-4a5c-bd51-52ffafb914e3",
      "Score": 2.1,
      "PositlPath": "sample string 3"
    },
    {
      "TestId": "d3a78654-938d-4a5c-bd51-52ffafb914e3",
      "Score": 2.1,
      "PositlPath": "sample string 3"
    }
  ],
  "AuditInfo": "sample string 4"
}

text/html

Sample:
{"PaperId":"fc09d742-ce41-4184-a799-a027952f1b17","UserId":"sample string 2","MemberId":"sample string 3","MarkPaperScoreSet":[{"TestId":"d3a78654-938d-4a5c-bd51-52ffafb914e3","Score":2.1,"PositlPath":"sample string 3"},{"TestId":"d3a78654-938d-4a5c-bd51-52ffafb914e3","Score":2.1,"PositlPath":"sample string 3"}],"AuditInfo":"sample string 4"}

application/xml, text/xml

Sample:
<AuditMarkPaperScoreSetDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <AuditInfo>sample string 4</AuditInfo>
  <MarkPaperScoreSet>
    <AuditMarkPaperScoreDto>
      <PositlPath>sample string 3</PositlPath>
      <Score>2.1</Score>
      <TestId>d3a78654-938d-4a5c-bd51-52ffafb914e3</TestId>
    </AuditMarkPaperScoreDto>
    <AuditMarkPaperScoreDto>
      <PositlPath>sample string 3</PositlPath>
      <Score>2.1</Score>
      <TestId>d3a78654-938d-4a5c-bd51-52ffafb914e3</TestId>
    </AuditMarkPaperScoreDto>
  </MarkPaperScoreSet>
  <MemberId>sample string 3</MemberId>
  <PaperId>fc09d742-ce41-4184-a799-a027952f1b17</PaperId>
  <UserId>sample string 2</UserId>
</AuditMarkPaperScoreSetDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

审核

JsonRtnDtoOfBoolean
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

boolean

None.

Response Formats

application/json, text/json

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

text/html

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

application/xml, text/xml

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

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

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