diff --git a/cv/invite_cv/invite_apply.go b/cv/invite_cv/invite_apply.go index 4ee166df392116b5dbfe967ad192aaf2517b3f45..10cccd1bbf69f0da7c7a3fa6b606513db72f837d 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 ffdd5ac48b20cd380881d7739b4fd35d0431298f..d1b167a46f868d789040b7cfe88cd3f6d505f7a8 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, }) }