You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
723 B
26 lines
723 B
package cms_struct
|
|
|
|
type GetFriendsReq struct {
|
|
OperationID string `json:"operationID"`
|
|
UserID string `json:"userID"`
|
|
FriendUserName string `json:"friendUserName"`
|
|
FriendUserID string `json:"friendUserID"`
|
|
RequestPagination
|
|
}
|
|
|
|
type FriendInfo struct {
|
|
OwnerUserID string `json:"ownerUserID"`
|
|
Remark string `json:"remark"`
|
|
CreateTime uint32 `json:"createTime"`
|
|
UserID string `json:"userID"`
|
|
Nickname string `json:"nickName"`
|
|
AddSource int32 `json:"addSource"`
|
|
OperatorUserID string `json:"operatorUserID"`
|
|
}
|
|
|
|
type GetFriendsResp struct {
|
|
ResponsePagination
|
|
FriendInfoList []*FriendInfo `json:"friendInfoList"`
|
|
FriendNums int32 `json:"friendNums"`
|
|
}
|