GET v1/physicalactivityroom/getgamelevel?gameType={gameType}
获取游戏等级划分标准
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| gameType |
游戏类型 |
GameTypeName |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GameLevelDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Age |
年龄 |
decimal number |
None. |
| Sex |
性别 |
string |
None. |
| BigScore |
平均分上线 |
decimal number |
None. |
| SmallScore |
分数下线 |
decimal number |
None. |
| FiveScore |
分值 |
integer |
None. |
| Level |
游戏等级 |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"age": 1.1,
"sex": "sample string 1",
"bigScore": 1.1,
"smallScore": 1.1,
"fiveScore": 1,
"level": "sample string 2"
},
{
"age": 1.1,
"sex": "sample string 1",
"bigScore": 1.1,
"smallScore": 1.1,
"fiveScore": 1,
"level": "sample string 2"
}
]