GET api/homework/LoadMyScores?paperId={paperId}

加载我的成绩

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paperId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

加载我的成绩

JsonRtnDtoOfIEnumerableOfHomeWorkScoreOutput
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

Collection of HomeWorkScoreOutput

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": [
    {
      "Score": 1.1,
      "EndTime": "2024-09-25T00:08:05.3595208+08:00"
    },
    {
      "Score": 1.1,
      "EndTime": "2024-09-25T00:08:05.3595208+08:00"
    }
  ]
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":[{"Score":1.1,"EndTime":"2024-09-25T00:08:05.3595208+08:00"},{"Score":1.1,"EndTime":"2024-09-25T00:08:05.3595208+08:00"}]}

application/xml, text/xml

Sample:
<JsonRtnDtoOfArrayOfHomeWorkScoreOutputv3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>
    <HomeWorkScoreOutput>
      <EndTime>2024-09-25T00:08:05.3595208+08:00</EndTime>
      <Score>1.1</Score>
    </HomeWorkScoreOutput>
    <HomeWorkScoreOutput>
      <EndTime>2024-09-25T00:08:05.3595208+08:00</EndTime>
      <Score>1.1</Score>
    </HomeWorkScoreOutput>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfArrayOfHomeWorkScoreOutputv3CTEUQJ>

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

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":[{"Score":1.1,"EndTime":"2024-09-25T00:08:05.3595208+08:00"},{"Score":1.1,"EndTime":"2024-09-25T00:08:05.3595208+08:00"}]});