企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## **班级通知 getNoticeUrl** **接口描述** * 获取班级通知接口 **请求URL** * [xxx.com/xxx](http://xxx.com/xxx) **请求方式** * GET **请求参数** | 参数名 | 是否必选| 类型 | 说明 | | --- | --- | --- |--- | | deviceId |是 | string | 设备序列号 | | currentPage| 否 | number | 当前页默认1,不传返回全部 | | pageSize | 否|number|每页数量,默认10| **返回参数** | 参数名 | 类型 | 说明 | | --- | --- | --- | | title| string | 标题 | | info| string | 通知内容,富文本格式| | publisher| string | 发布人| | addTime| string | 发布时间| | list | array | 数据列表 | | total | number | 总数量 | | totalPage | number | 总页数 | | pageSize |number|每页数量| | currentPage| number | 当前页 | **返回示例** ~~~ { "status": 0, "msg": "success", "data": { "total": "1", "currentPage": "1", "totalPage": "1", "pageSize": "10", "list": [ { "id": "", "title": "通知标题", "info": "", "publisher": "", "addTime": "" }, { "id": "", "title": "标题", "info": "", "publisher": "", "addTime": "" } ] } } ~~~