-
Notifications
You must be signed in to change notification settings - Fork 4
可选宿舍查询API
CoderiGenius edited this page Aug 16, 2019
·
1 revision
通过post方式,发送学号,查询可选的宿舍列表
POST
参数名 | 参数类型 | 是否必填 | 说明 |
---|
参数名 | 参数类型 | 是否必填 | 说明 |
---|---|---|---|
studentNumber | String | yes | 学生学号 |
参数名 | 参数类型 | 说明 | 是否一定返回 |
---|---|---|---|
error | JSON | 错误信息 | 是 |
error.code | number | 错误代码,0表示无错误 | 是 |
error.msg | string | 错误信息,无错误为空 | 是 |
stuDorms | Array | 学生可选宿舍数组,未查到为空 | 否 |
参数名 | 参数类型 | 说明 | 是否一定返回 |
---|---|---|---|
stuBuilding | string | 学生可选宿舍楼 | 是 |
stuRoomNumber | string | 学生可选宿舍号 | 是 |
stuBuildingPic | string | 学生宿舍楼照片 | 否 |
stuBuildingDistributionPic | string | 学生宿舍分布照 | 否 |
{
"error": {"code":"1","msg":"error is xxx"},
"stuDorms":[
"stuBuilding":"崂山校区-北8舍B区",
"stuRoomNumber":"302",
"stuBuildingPic":"http://",
"stuBuildingDistributionPic":"http://",
]
}