GET api/testpaperstatistic/GetReTestRealMarkingProgress?paperId={paperId}&retestId={retestId}

加载试题阅卷实时均分

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paperId

试卷编号

globally unique identifier

Required

retestId

试题编号

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

加载试题阅卷实时均分

JsonRtnDtoOfReTestRealMarkingProgressOutput
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

ReTestRealMarkingProgressOutput

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": {
    "TotalNum": 1,
    "SumScore": 2.1,
    "MarkNum": 3,
    "AvgScore": 0.7
  }
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":{"TotalNum":1,"SumScore":2.1,"MarkNum":3,"AvgScore":0.7}}

application/xml, text/xml

Sample:
<JsonRtnDtoOfReTestRealMarkingProgressOutputv3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>
    <MarkNum>3</MarkNum>
    <SumScore>2.1</SumScore>
    <TotalNum>1</TotalNum>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfReTestRealMarkingProgressOutputv3CTEUQJ>

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

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":{"TotalNum":1,"SumScore":2.1,"MarkNum":3,"AvgScore":0.7}});