文档
测试

收件箱/发件箱列表

POST

响应参数

参数名
类型
描述
必填
totalSize
int
收件列表:收件箱 总数量 收件列表:发件箱 总数量
必填
noRead
int
收件列表:收件箱 未读数量 发件列表:无此项
必填
totalPage
int
总页数
必填
list
Array
收件/发件列表
必填
fileSid
String
文件的sid
必填
fileName
String
收件列表:发件人的姓名(只一个姓名) 发件列表:收件人的姓名(可多个姓名 如 李xx、王帅哥 这种形式)
必填
fileHeadImg
String
收件列表:发件人的头像地址 发件列表:收件人的头像地址(第一个收件人的头像地址,如果第一个收件人是自己且只有一个收件人 头像即自己 否则 头像是第二个人的)
必填
fileTitle
String
文件的标题
必填
fileContent
String
文件的内容
必填
hasAttachment
boolean
是否包含附件
必填
fileTime
String
发件/收件时间
必填
noReaded
boolean
收件列表:是否未读 发件列表:无此项
必填

说明 / 示例

``` { "code": 200, "success": true, "msg": "成功", "data": { "totalPage": 1, "totalSize": 10, "noRead": 2, "list": [{ "fileSid": "sid", "fileHeadImg": "http", "fileName": "aaa", "fileTitle": "bbb", "fileContent": "<br>", "hasAttachment": true, "noReaded": true, "fileTime": "2020 - 10 - 12 " }] } } ```