🎉 开放平台文档站换新颜。 欢迎填问卷给我们建议,意见,反馈,夸夸 →
Skip to Content
API文档教学管理数据教学资源数据教学楼及教室信息教室管理信息查询
httpsapitongjieducnv1rtclassroomclassroom_list

教室管理信息查询

最近更新时间: 2025年12月19日 09时52分44秒
实时

描述

获取教室系统中的教室列表

支持的模式

客户端模式

请求方法

GET

请求地址

数据来源

SYS20230088(公共教室数智化管理平台)

请求参数

参数名是否必填备注
current页码
size行数
buildingId楼宇ID
name教室名称(模糊查询)

返回参数

参数名类型备注码表
total
integer总数
current
integer页码
size
integer行数
records
array列表
id
String教室ID
campusCd
String校区ID
buildingId
Integer楼宇ID
classroomTypeCd
String教室类型代码
classroomNo
String教室编号
name
String教室名称
floor
String楼层
seatNum
String座位数
sort
String排序值
personNum
String人数
createTime
String创建时间
updateTime
String修改时间
delFlag
String是否删除 1:已删除 0:正常
environment
String环境信息 参考环境信息说明
environmentIp
String环境IP
environmentPort
String环境端口

请求示例

curl -X GET \ 'https://api.tongji.edu.cn/v1/rt/classroom/classroom_list?current=&size=&buildingId=&name='

返回示例

{ "code": "A00000", "msg": "操作成功", "data": { "records": [ { "id": 1, "campusCd": "2", "buildingId": 10, "classroomTypeCd": "3", "classroomNo": "J-AL-105", "name": "105", "floor": 1, "seatNum": 72, "sort": 1, "personNum": null, "createTime": [ 2021, 12, 15, 19, 13 ], "updateTime": [ 2023, 7, 24, 10, 5 ], "delFlag": "0", "environment": "{\"DeviceID\":\"J-AL-105Sensor\",\"Temperature\":\"27\",\"CO2\":\"442\",\"PM25\":\"31\",\"Humidity\":\"48\"}", "environmentIp": "10.91.3.11", "environmentPort": "7000" } ], "total": 625, "size": 10, "current": 1, "orders": [], "optimizeCountSql": true, "hitCount": false, "countId": null, "maxLimit": null, "searchCount": true, "pages": 63 } }