Refactor code

This commit is contained in:
wenxu12345 2021-12-29 16:46:33 +08:00
parent 95a771c2fb
commit 69b1ee2ec7
2 changed files with 3 additions and 2 deletions

View File

@ -54,7 +54,7 @@ func ImportFriend(c *gin.Context) {
return
}
req := &rpc.ImportFriendReq{}
utils.CopyStructFields(req, &params.ParamsCommFriend)
utils.CopyStructFields(req, &params)
var ok bool
ok, req.OpUserID = token_verify.GetUserIDFromToken(c.Request.Header.Get("token"))
if !ok {

View File

@ -17,7 +17,8 @@ type AddBlacklistResp struct {
type ImportFriendReq struct {
FriendUserIDList []string `json:"friendUserIDList" binding:"required"`
ParamsCommFriend
OperationID string `json:"operationID" binding:"required"`
FromUserID string `json:"fromUserID" binding:"required"`
}
type UserIDResult struct {
UserID string `json:"userID""`