Appearance
功能概述
通知详情展示模块(会将未读消息自动标为已读)
接口访问
接口地址
intel/notice/detail
请求方式 Method
GET
Header - Authorization Type : Bearer Token
| 属性 | 类型 | 长度 | 必填 | 默认值 | 说明 | 访问版本 |
|---|---|---|---|---|---|---|
| token | string | 32 | true | 用户身份标识令牌 | - |
请求参数
| 属性 | 类型 | 长度 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|---|
| noticeID | integer | 11 | true | 消息通知ID |
返回值
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| id | integer | true | 通知ID |
| title | string | true | 通知标题 |
| description | string | true | 通知内容 |
| imageUrl | string | true | 通知图片地址 |
| noticeType | integer | true | 通知类型 |
| isRead | integer | true | 是否已读 |
| remark | string | true | 备注 |
| expirationTime | string | true | 消息过期时间 |
| createTime | datetime | true | 创建时间 |
返回示例
{
"response": {
"id": 6,
"title": "审核结果通知",
"description": "很抱歉,入会审核未通过!原因如下:123",
"imageUrl": "",
"noticeType": 3,
"isRead": 1,
"remark": null,
"expirationTime": null,
"createTime": "2025-01-15 20:07:12"
},
"requestId": "7dd808c5-e05c-4bd6-bbd8-d7e39ef6712d"
}