POST api/testpaperstatistic/GetGreadeScoreAnalysis
年级小规则得分对比
Request Information
URI Parameters
None.
Body Parameters
GreadeScoreQueryDtoName | Description | Type | Additional information |
---|---|---|---|
Grade |
年级 |
integer |
None. |
Semester |
学期 |
integer |
None. |
Absent |
是否包括缺考 |
boolean |
None. |
Conditions |
成绩分组条件 |
Collection of Condition |
None. |
Request Formats
application/json, text/json
Sample:
{ "Grade": 1, "Semester": 2, "Absent": true, "Conditions": [ { "Name": "sample string 1", "MinScore": 2.1, "MaxScore": 3.1 }, { "Name": "sample string 1", "MinScore": 2.1, "MaxScore": 3.1 } ] }
text/html
Sample:
{"Grade":1,"Semester":2,"Absent":true,"Conditions":[{"Name":"sample string 1","MinScore":2.1,"MaxScore":3.1},{"Name":"sample string 1","MinScore":2.1,"MaxScore":3.1}]}
application/xml, text/xml
Sample:
<GreadeScoreQueryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Absent>true</Absent> <Conditions> <Condition> <MaxScore>3.1</MaxScore> <MinScore>2.1</MinScore> <Name>sample string 1</Name> </Condition> <Condition> <MaxScore>3.1</MaxScore> <MinScore>2.1</MinScore> <Name>sample string 1</Name> </Condition> </Conditions> <Grade>1</Grade> <Semester>2</Semester> </GreadeScoreQueryDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
年级小规则得分对比
JsonRtnDtoOfObjectName | Description | Type | Additional information |
---|---|---|---|
Msg | string |
None. |
|
State | RtnState |
None. |
|
Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "Msg": "sample string 1", "State": 100, "Data": {} }
text/html
Sample:
{"Msg":"sample string 1","State":100,"Data":{}}
application/xml, text/xml
Sample:
<JsonRtnDtoOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Data /> <Msg>sample string 1</Msg> <State>Display</State> </JsonRtnDtoOfanyType>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"Msg":"sample string 1","State":100,"Data":{}});