-
Notifications
You must be signed in to change notification settings - Fork 70
Home
yangxuechen edited this page Nov 21, 2018
·
2 revisions
postList(失物招领信息数组)
postList:[
{
postId: //id(int)
author: //发布人(String)
avatar: //发布人头像(String)
content: //内容 (String)
contentImg://图片内容 (String)
date: //时间 (String)
commentSize://评论数量 (int)
},
]
commentList(一条信息的评论)
commentList:[
{
id: //id (int)
author: //评论人 (String)
avatar: //评论人头像 (String)
content: //内容 (String)
date: //时间 (String)
likedCount://点赞数量 (int)
status:true/false //当前用户是否点赞 (boolean)
},
]
userInfo(用户信息)
{
userName: //用户名(String)
avatar: //头像 (String)
}