From 7578d81d01ddd18d9909bbd316d2d287ce76ec66 Mon Sep 17 00:00:00 2001 From: chenweijian <820961417@qq.com> Date: Fri, 21 Jul 2023 13:52:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B4=BE=E5=AF=B9=E7=94=B3=E8=AF=B7=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cv/invite_cv/invite_apply.go | 2 ++ route/invite_r/party_invite.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/cv/invite_cv/invite_apply.go b/cv/invite_cv/invite_apply.go index 4ee166d..10cccd1 100644 --- a/cv/invite_cv/invite_apply.go +++ b/cv/invite_cv/invite_apply.go @@ -27,6 +27,8 @@ type InviteApply struct { Avatar string `json:"avatar"` ExternalId string `json:"externalId"` Reason int `json:"reason"` // 1.已申请2.待审核3.已通过4.已拒绝" + Country string `json:"country"` + PlatformId string `json:"platformId"` } type InviteApplyNumRes struct { diff --git a/route/invite_r/party_invite.go b/route/invite_r/party_invite.go index ffdd5ac..d1b167a 100644 --- a/route/invite_r/party_invite.go +++ b/route/invite_r/party_invite.go @@ -215,6 +215,8 @@ func InviteApplyList(c *gin.Context) (*mycontext.MyContext, error) { Avatar: users[v.NewUserId].Avatar, ExternalId: users[v.NewUserId].ExternalId, Reason: v.Reason, + Country: users[v.NewUserId].Country, + PlatformId: v.PlatformId, }) } -- 2.22.0