package constants const ( FriendshipStatusPending = 0 // 待确认(已发送申请) FriendshipStatusAccepted = 1 // 已接受(互为好友) FriendshipStatusRejected = 2 // 已拒绝 FriendshipStatusBlocked = 3 // 已拉黑 )