文档
测试

获取已读未读列表

POST
http://SERVER:PORT/oaNotice/getOaNoticeReadList

接口描述

根据公告ID获取已读未读员工姓名和数量

请求参数

参数名
类型
描述
必填
noticeId
int
公告id
必填

响应参数

参数名
类型
描述
必填
readCount
int
已读数量
必填
unReadCount
int
未读数量
必填
readNamelist
array
已读员工姓名列表
必填
name
string
员工姓名
必填
icon
string
员工头像
可选
unReadNameList
array
未读员工姓名列表
必填
name
string
员工姓名
必填
icon
string
员工头像
可选

说明 / 示例

``` { "flag": true, "code": "1000", "data": { "readCount": 3, "unReadCount": 2, "readNamelist": [ { "name": "邓艳丽", "icon": "http://118.178.132.220/oa/file/test/2_20201113154850_689028.png" }, { "name": "朱腾飞", "icon": "http://118.178.132.220/oa/file/test/30_20201204181947_314167.png" } ], "unReadNameList": [ { "name": "高雯", "icon": "http://118.178.132.220/oa/file/test/188_20200928154631_123749.jpeg" }, { "name": "杨婷" }, { "name": "向倩芸" } ] }, "message": "成功" } ```