From f1e54a8fa2f92ecc01c6c9978fdba598340bb507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Tue, 11 Jan 2022 15:15:42 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E4=BC=98=E5=8C=96=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E7=BE=A4=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/param/request.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/api/param/request.go b/api/param/request.go index 397853f..bce4944 100644 --- a/api/param/request.go +++ b/api/param/request.go @@ -37,12 +37,12 @@ type AccountDeleteReqItem struct { // GroupCreateReq 建群 type GroupCreateReq struct { - OwnerAccount string `json:"Owner_Account"` // 群主的 UserId(选填) - Type common.GroupType `json:"Type"` // 群组类型(不支持创建直播群) - Name string `json:"Name"` // 群名称(必填) - ApplyJoinOption string `json:"ApplyJoinOption"` // 申请加群处理方式(选填) -> FreeAccess(自由加入),NeedPermission(需要验证),DisableApply(禁止加群),不填默认为 NeedPermission(需要验证) - GroupId string `json:"GroupId"` // 自定义的群组Id - MemberList []GroupMemberItem `json:"MemberList"` // 群组成员 + OwnerAccount string `json:"Owner_Account"` // 群主的 UserId(选填) + Type common.GroupType `json:"Type"` // 群组类型(不支持创建直播群) + Name string `json:"Name"` // 群名称(必填) + GroupId string `json:"GroupId"` // 自定义的群组Id + MemberList []GroupMemberItem `json:"MemberList"` // 群组成员 + //ApplyJoinOption string `json:"ApplyJoinOption"` // 申请加群处理方式(选填) -> FreeAccess(自由加入),NeedPermission(需要验证),DisableApply(禁止加群),不填默认为 NeedPermission(需要验证) } // GroupMemberItem 群成员