1.URL

http://124.223.60.234:8080/system/asset/operation/querySystemNoticeList

2.请求参数

2.1请求头

在Headers里面增加token:对应登录验证成功后,data里面对应的tokenId

2.2.参数示例

{
    "startTime":"2023-01-01 00:00:00",
    "endTime":"2023-03-01 00:00:00",
    "key":"",
    "pageNum":1,
    "pageSize":20
}

2.3.参数说明

字段 类型 说明 是否必须
startTime String 开始时间(UTC) Y
endTime String 结束时间(UTC) Y
key String 模糊查询对应的Key Y
pageNum int 分页查询页码 Y
pageSize int 分页查询每页显示条数 Y

3.接口应答

3.1.返回示例

{
    "code": 200,
    "message": "Operation succeeded",
    "data": {
        "total": 2,
        "size": 1,
        "data": [
            {
                "id": "79C1EC488F394841AB85DBDC8E13AF58",
                "title": "20230130更新",
                "author": "Mr.Lee",
                "content": "系统将与2023年1月1日进行版本更新,请悉知!",
                "createTime": "2023-01-30 09:08:47",
                "creatorId": "F940B79790004404AAC277418FC71C5D",
                "creator": "aovx",
                "pushTime": "2023-02-05 00:00:00",
                "status": 1,
                "updateTime": null,
                "updateBy": null,
                "updateUser": null,
                "pushUserList": [
                    {
                        "userId": "70EC3EE9FD9A49739F7784D511B03A63",
                        "userName": "yytx",
                        "orgId": "8F2744CF926044CF8E5B44D2BF7D0BF0",
                        "orgName": "亿元通讯"
                    },
                    {
                        "userId": "F940B79790004404AAC277418FC71C5D",
                        "userName": "aovx",
                        "orgId": "F940B79790004404AAC277418FC71C5E",
                        "orgName": "云息通信"
                    }
                ]
            },
            {
                "id": "D71022B76B4A4389AD0BD768084D3A5A",
                "title": "20230130更新",
                "author": "Mr.Lee",
                "content": "系统将与2023年1月1日进行版本更新,请悉知!",
                "createTime": "2023-01-30 09:01:11",
                "creatorId": "F940B79790004404AAC277418FC71C5D",
                "creator": "aovx",
                "pushTime": "2023-02-05 00:00:00",
                "status": 1,
                "updateTime": "2023-01-30 09:10:12",
                "updateBy": "F940B79790004404AAC277418FC71C5D",
                "updateUser": "aovx",
                "pushUserList": [
                    {
                        "userId": "70EC3EE9FD9A49739F7784D511B03A63",
                        "userName": "yytx",
                        "orgId": "8F2744CF926044CF8E5B44D2BF7D0BF0",
                        "orgName": "亿元通讯"
                    },
                    {
                        "userId": "F940B79790004404AAC277418FC71C5D",
                        "userName": "aovx",
                        "orgId": "F940B79790004404AAC277418FC71C5E",
                        "orgName": "云息通信"
                    }
                ]
            }
        ]
    }
}

3.2.返回结果说明

字段 类型 说明
code int 返回状态
message String 返回结果描述
data object 返回结果体

data说明

字段 类型 说明
total String 总条数
size String 多少页
data object 每页的结果集合

data说明

字段 类型 说明
id String 消息Id
title String 标题
author String 作者
content String 内容
createTime String 创建时间
creatorId String 创建者唯一标识
creator String 创建者
pushTime Integer 推送时间
status Integer 状态(-1:作废;0:正常)
updateTime Integer 最后修改时间
updateBy Integer 最后修改用户唯一标识
updateUser Integer 最后修改用户
pushUserList Integer 系统消息提醒人列表

pushUserList说明

字段 类型 说明
userId String 系统用户唯一标识
userName String 系统用户名称
orgId String 用户所属组织唯一标识
orgName String 用户所属组织名称

4.请求示例

作者:admin  创建时间:2023-04-16 20:32
最后编辑:admin  更新时间:2025-04-23 17:26