group set memberInfo

pull/232/head
wangchuxiao 2 years ago
parent 07b652c1d4
commit f3fc452904

@ -10,6 +10,7 @@ import (
open_im_sdk "Open_IM/pkg/proto/sdk_ws" open_im_sdk "Open_IM/pkg/proto/sdk_ws"
"Open_IM/pkg/utils" "Open_IM/pkg/utils"
"context" "context"
"github.com/golang/protobuf/ptypes/wrappers"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
@ -807,25 +808,55 @@ func SetGroupMemberNickname(c *gin.Context) {
} }
func SetGroupMemberInfo(c *gin.Context) { func SetGroupMemberInfo(c *gin.Context) {
//var ( var (
// req api.SetGroupMemberInfoReq req api.SetGroupMemberInfoReq
// resp api.SetGroupMemberInfoResp resp api.SetGroupMemberInfoResp
//) )
//if err := c.BindJSON(&req); err != nil { if err := c.BindJSON(&req); err != nil {
// log.NewError("0", "BindJSON failed ", err.Error()) log.NewError("0", "BindJSON failed ", err.Error())
// c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()}) c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
// return return
//} }
// log.NewInfo(req.OperationID, utils.GetSelfFuncName(), req)
//var ok bool var opUserID string
//var errInfo string ok, opUserID, errInfo := token_verify.GetUserIDFromToken(c.Request.Header.Get("token"), req.OperationID)
//ok, req.OpUserID, errInfo = token_verify.GetUserIDFromToken(c.Request.Header.Get("token"), req.OperationID) if !ok {
//if !ok { errMsg := req.OperationID + " " + "GetUserIDFromToken failed " + errInfo + " token:" + c.Request.Header.Get("token")
// errMsg := req.OperationID + " " + "GetUserIDFromToken failed " + errInfo + " token:" + c.Request.Header.Get("token") log.NewError(req.OperationID, errMsg)
// log.NewError(req.OperationID, errMsg) c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": errMsg})
// c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": errMsg}) return
// return }
//}
// reqPb := &rpc.SetGroupMemberInfoReq{
//log.NewInfo(req.OperationID, utils.GetSelfFuncName(), " api args ", req.String()) GroupID: req.GroupID,
UserID: req.UserID,
OperationID: req.OperationID,
OpUserID: opUserID,
}
if req.Nickname != nil {
reqPb.Nickname = &wrappers.StringValue{Value: *req.Nickname}
}
if req.FaceURL != nil {
reqPb.FaceURL = &wrappers.StringValue{Value: *req.FaceURL}
}
if req.Ex != nil {
reqPb.Ex = &wrappers.StringValue{Value: *req.Ex}
}
if req.RoleLevel != nil {
reqPb.RoleLevel = &wrappers.Int32Value{Value: *req.RoleLevel}
}
etcdConn := getcdv3.GetConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImGroupName)
client := rpc.NewGroupClient(etcdConn)
respPb, err := client.SetGroupMemberInfo(context.Background(), reqPb)
if err != nil {
log.NewError(req.OperationID, utils.GetSelfFuncName(), " failed ", err.Error())
c.JSON(http.StatusInternalServerError, gin.H{"errCode": 500, "errMsg": err.Error()})
return
}
resp.ErrMsg = respPb.CommonResp.ErrMsg
resp.ErrCode = respPb.CommonResp.ErrCode
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), " api args ", resp)
c.JSON(http.StatusInternalServerError, resp)
} }

@ -1407,6 +1407,33 @@ func (s *groupServer) SetGroupMemberNickname(ctx context.Context, req *pbGroup.S
} }
func (s *groupServer) SetGroupMemberInfo(ctx context.Context, req *pbGroup.SetGroupMemberInfoReq) (resp *pbGroup.SetGroupMemberInfoResp, err error) { func (s *groupServer) SetGroupMemberInfo(ctx context.Context, req *pbGroup.SetGroupMemberInfoReq) (resp *pbGroup.SetGroupMemberInfoResp, err error) {
resp = &pbGroup.SetGroupMemberInfoResp{} log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "req: ", req.String())
resp = &pbGroup.SetGroupMemberInfoResp{CommonResp: &pbGroup.CommonResp{}}
groupMember := db.GroupMember{
GroupID: req.GroupID,
UserID: req.UserID,
}
m := make(map[string]interface{})
if req.RoleLevel != nil {
m["role_level"] = req.RoleLevel.Value
}
if req.FaceURL != nil {
m["user_group_face_url"] = req.FaceURL.Value
}
if req.Nickname != nil {
m["nickname"] = req.Nickname.Value
}
if req.Ex != nil {
m["ex"] = req.Ex.Value
}
err = imdb.UpdateGroupMemberInfoByMap(groupMember, m)
if err != nil {
log.NewError(req.OperationID, utils.GetSelfFuncName(), "SetGroupMemberInfo failed", err.Error())
resp.CommonResp.ErrCode = constant.ErrDB.ErrCode
resp.CommonResp.ErrMsg = constant.ErrDB.ErrMsg + ":" + err.Error()
}
chat.GroupMemberInfoSetNotification(req.OperationID, req.OpUserID, req.GroupID, req.UserID)
log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "resp: ", resp.String())
return resp, nil return resp, nil
} }

@ -234,13 +234,13 @@ type SetGroupMemberNicknameResp struct {
} }
type SetGroupMemberInfoReq struct { type SetGroupMemberInfoReq struct {
OperationID string `json:"operationID" binding:"required"` OperationID string `json:"operationID" binding:"required"`
GroupID string `json:"groupID" binding:"required"` GroupID string `json:"groupID" binding:"required"`
UserID string `json:"userID" binding:"required"` UserID string `json:"userID" binding:"required"`
Nickname string `json:"nickname"` Nickname *string `json:"nickname"`
FaceURL string `json:"user_group_face_url"` FaceURL *string `json:"userGroupFaceUrl"`
RoleLevel string `json:"role_level"` RoleLevel *int32 `json:"roleLevel" validate:"gte=1,lte=3"`
Ex string `json:"ex"` Ex *string `json:"ex"`
} }
type SetGroupMemberInfoResp struct { type SetGroupMemberInfoResp struct {

@ -142,6 +142,18 @@ func UpdateGroupMemberInfo(groupMemberInfo db.GroupMember) error {
return nil return nil
} }
func UpdateGroupMemberInfoByMap(groupMemberInfo db.GroupMember, m map[string]interface{}) error {
dbConn, err := db.DB.MysqlDB.DefaultGormDB()
if err != nil {
return err
}
err = dbConn.Table("group_members").Where("group_id=? and user_id=?", groupMemberInfo.GroupID, groupMemberInfo.UserID).Updates(m).Error
if err != nil {
return err
}
return nil
}
func GetOwnerManagerByGroupID(groupID string) ([]db.GroupMember, error) { func GetOwnerManagerByGroupID(groupID string) ([]db.GroupMember, error) {
dbConn, err := db.DB.MysqlDB.DefaultGormDB() dbConn, err := db.DB.MysqlDB.DefaultGormDB()
if err != nil { if err != nil {

@ -37,7 +37,7 @@ func (m *CommonResp) Reset() { *m = CommonResp{} }
func (m *CommonResp) String() string { return proto.CompactTextString(m) } func (m *CommonResp) String() string { return proto.CompactTextString(m) }
func (*CommonResp) ProtoMessage() {} func (*CommonResp) ProtoMessage() {}
func (*CommonResp) Descriptor() ([]byte, []int) { func (*CommonResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{0} return fileDescriptor_group_8c320ccb494991ed, []int{0}
} }
func (m *CommonResp) XXX_Unmarshal(b []byte) error { func (m *CommonResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommonResp.Unmarshal(m, b) return xxx_messageInfo_CommonResp.Unmarshal(m, b)
@ -83,7 +83,7 @@ func (m *GroupAddMemberInfo) Reset() { *m = GroupAddMemberInfo{} }
func (m *GroupAddMemberInfo) String() string { return proto.CompactTextString(m) } func (m *GroupAddMemberInfo) String() string { return proto.CompactTextString(m) }
func (*GroupAddMemberInfo) ProtoMessage() {} func (*GroupAddMemberInfo) ProtoMessage() {}
func (*GroupAddMemberInfo) Descriptor() ([]byte, []int) { func (*GroupAddMemberInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{1} return fileDescriptor_group_8c320ccb494991ed, []int{1}
} }
func (m *GroupAddMemberInfo) XXX_Unmarshal(b []byte) error { func (m *GroupAddMemberInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupAddMemberInfo.Unmarshal(m, b) return xxx_messageInfo_GroupAddMemberInfo.Unmarshal(m, b)
@ -132,7 +132,7 @@ func (m *CreateGroupReq) Reset() { *m = CreateGroupReq{} }
func (m *CreateGroupReq) String() string { return proto.CompactTextString(m) } func (m *CreateGroupReq) String() string { return proto.CompactTextString(m) }
func (*CreateGroupReq) ProtoMessage() {} func (*CreateGroupReq) ProtoMessage() {}
func (*CreateGroupReq) Descriptor() ([]byte, []int) { func (*CreateGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{2} return fileDescriptor_group_8c320ccb494991ed, []int{2}
} }
func (m *CreateGroupReq) XXX_Unmarshal(b []byte) error { func (m *CreateGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateGroupReq.Unmarshal(m, b) return xxx_messageInfo_CreateGroupReq.Unmarshal(m, b)
@ -200,7 +200,7 @@ func (m *CreateGroupResp) Reset() { *m = CreateGroupResp{} }
func (m *CreateGroupResp) String() string { return proto.CompactTextString(m) } func (m *CreateGroupResp) String() string { return proto.CompactTextString(m) }
func (*CreateGroupResp) ProtoMessage() {} func (*CreateGroupResp) ProtoMessage() {}
func (*CreateGroupResp) Descriptor() ([]byte, []int) { func (*CreateGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{3} return fileDescriptor_group_8c320ccb494991ed, []int{3}
} }
func (m *CreateGroupResp) XXX_Unmarshal(b []byte) error { func (m *CreateGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateGroupResp.Unmarshal(m, b) return xxx_messageInfo_CreateGroupResp.Unmarshal(m, b)
@ -254,7 +254,7 @@ func (m *GetGroupsInfoReq) Reset() { *m = GetGroupsInfoReq{} }
func (m *GetGroupsInfoReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupsInfoReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupsInfoReq) ProtoMessage() {} func (*GetGroupsInfoReq) ProtoMessage() {}
func (*GetGroupsInfoReq) Descriptor() ([]byte, []int) { func (*GetGroupsInfoReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{4} return fileDescriptor_group_8c320ccb494991ed, []int{4}
} }
func (m *GetGroupsInfoReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupsInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupsInfoReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupsInfoReq.Unmarshal(m, b)
@ -308,7 +308,7 @@ func (m *GetGroupsInfoResp) Reset() { *m = GetGroupsInfoResp{} }
func (m *GetGroupsInfoResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupsInfoResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupsInfoResp) ProtoMessage() {} func (*GetGroupsInfoResp) ProtoMessage() {}
func (*GetGroupsInfoResp) Descriptor() ([]byte, []int) { func (*GetGroupsInfoResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{5} return fileDescriptor_group_8c320ccb494991ed, []int{5}
} }
func (m *GetGroupsInfoResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupsInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupsInfoResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupsInfoResp.Unmarshal(m, b)
@ -362,7 +362,7 @@ func (m *SetGroupInfoReq) Reset() { *m = SetGroupInfoReq{} }
func (m *SetGroupInfoReq) String() string { return proto.CompactTextString(m) } func (m *SetGroupInfoReq) String() string { return proto.CompactTextString(m) }
func (*SetGroupInfoReq) ProtoMessage() {} func (*SetGroupInfoReq) ProtoMessage() {}
func (*SetGroupInfoReq) Descriptor() ([]byte, []int) { func (*SetGroupInfoReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{6} return fileDescriptor_group_8c320ccb494991ed, []int{6}
} }
func (m *SetGroupInfoReq) XXX_Unmarshal(b []byte) error { func (m *SetGroupInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetGroupInfoReq.Unmarshal(m, b) return xxx_messageInfo_SetGroupInfoReq.Unmarshal(m, b)
@ -414,7 +414,7 @@ func (m *SetGroupInfoResp) Reset() { *m = SetGroupInfoResp{} }
func (m *SetGroupInfoResp) String() string { return proto.CompactTextString(m) } func (m *SetGroupInfoResp) String() string { return proto.CompactTextString(m) }
func (*SetGroupInfoResp) ProtoMessage() {} func (*SetGroupInfoResp) ProtoMessage() {}
func (*SetGroupInfoResp) Descriptor() ([]byte, []int) { func (*SetGroupInfoResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{7} return fileDescriptor_group_8c320ccb494991ed, []int{7}
} }
func (m *SetGroupInfoResp) XXX_Unmarshal(b []byte) error { func (m *SetGroupInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetGroupInfoResp.Unmarshal(m, b) return xxx_messageInfo_SetGroupInfoResp.Unmarshal(m, b)
@ -454,7 +454,7 @@ func (m *GetGroupApplicationListReq) Reset() { *m = GetGroupApplicationL
func (m *GetGroupApplicationListReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupApplicationListReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupApplicationListReq) ProtoMessage() {} func (*GetGroupApplicationListReq) ProtoMessage() {}
func (*GetGroupApplicationListReq) Descriptor() ([]byte, []int) { func (*GetGroupApplicationListReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{8} return fileDescriptor_group_8c320ccb494991ed, []int{8}
} }
func (m *GetGroupApplicationListReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupApplicationListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupApplicationListReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupApplicationListReq.Unmarshal(m, b)
@ -508,7 +508,7 @@ func (m *GetGroupApplicationListResp) Reset() { *m = GetGroupApplication
func (m *GetGroupApplicationListResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupApplicationListResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupApplicationListResp) ProtoMessage() {} func (*GetGroupApplicationListResp) ProtoMessage() {}
func (*GetGroupApplicationListResp) Descriptor() ([]byte, []int) { func (*GetGroupApplicationListResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{9} return fileDescriptor_group_8c320ccb494991ed, []int{9}
} }
func (m *GetGroupApplicationListResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupApplicationListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupApplicationListResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupApplicationListResp.Unmarshal(m, b)
@ -562,7 +562,7 @@ func (m *GetUserReqApplicationListReq) Reset() { *m = GetUserReqApplicat
func (m *GetUserReqApplicationListReq) String() string { return proto.CompactTextString(m) } func (m *GetUserReqApplicationListReq) String() string { return proto.CompactTextString(m) }
func (*GetUserReqApplicationListReq) ProtoMessage() {} func (*GetUserReqApplicationListReq) ProtoMessage() {}
func (*GetUserReqApplicationListReq) Descriptor() ([]byte, []int) { func (*GetUserReqApplicationListReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{10} return fileDescriptor_group_8c320ccb494991ed, []int{10}
} }
func (m *GetUserReqApplicationListReq) XXX_Unmarshal(b []byte) error { func (m *GetUserReqApplicationListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetUserReqApplicationListReq.Unmarshal(m, b) return xxx_messageInfo_GetUserReqApplicationListReq.Unmarshal(m, b)
@ -615,7 +615,7 @@ func (m *GetUserReqApplicationListResp) Reset() { *m = GetUserReqApplica
func (m *GetUserReqApplicationListResp) String() string { return proto.CompactTextString(m) } func (m *GetUserReqApplicationListResp) String() string { return proto.CompactTextString(m) }
func (*GetUserReqApplicationListResp) ProtoMessage() {} func (*GetUserReqApplicationListResp) ProtoMessage() {}
func (*GetUserReqApplicationListResp) Descriptor() ([]byte, []int) { func (*GetUserReqApplicationListResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{11} return fileDescriptor_group_8c320ccb494991ed, []int{11}
} }
func (m *GetUserReqApplicationListResp) XXX_Unmarshal(b []byte) error { func (m *GetUserReqApplicationListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetUserReqApplicationListResp.Unmarshal(m, b) return xxx_messageInfo_GetUserReqApplicationListResp.Unmarshal(m, b)
@ -664,7 +664,7 @@ func (m *TransferGroupOwnerReq) Reset() { *m = TransferGroupOwnerReq{} }
func (m *TransferGroupOwnerReq) String() string { return proto.CompactTextString(m) } func (m *TransferGroupOwnerReq) String() string { return proto.CompactTextString(m) }
func (*TransferGroupOwnerReq) ProtoMessage() {} func (*TransferGroupOwnerReq) ProtoMessage() {}
func (*TransferGroupOwnerReq) Descriptor() ([]byte, []int) { func (*TransferGroupOwnerReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{12} return fileDescriptor_group_8c320ccb494991ed, []int{12}
} }
func (m *TransferGroupOwnerReq) XXX_Unmarshal(b []byte) error { func (m *TransferGroupOwnerReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TransferGroupOwnerReq.Unmarshal(m, b) return xxx_messageInfo_TransferGroupOwnerReq.Unmarshal(m, b)
@ -730,7 +730,7 @@ func (m *TransferGroupOwnerResp) Reset() { *m = TransferGroupOwnerResp{}
func (m *TransferGroupOwnerResp) String() string { return proto.CompactTextString(m) } func (m *TransferGroupOwnerResp) String() string { return proto.CompactTextString(m) }
func (*TransferGroupOwnerResp) ProtoMessage() {} func (*TransferGroupOwnerResp) ProtoMessage() {}
func (*TransferGroupOwnerResp) Descriptor() ([]byte, []int) { func (*TransferGroupOwnerResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{13} return fileDescriptor_group_8c320ccb494991ed, []int{13}
} }
func (m *TransferGroupOwnerResp) XXX_Unmarshal(b []byte) error { func (m *TransferGroupOwnerResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TransferGroupOwnerResp.Unmarshal(m, b) return xxx_messageInfo_TransferGroupOwnerResp.Unmarshal(m, b)
@ -771,7 +771,7 @@ func (m *JoinGroupReq) Reset() { *m = JoinGroupReq{} }
func (m *JoinGroupReq) String() string { return proto.CompactTextString(m) } func (m *JoinGroupReq) String() string { return proto.CompactTextString(m) }
func (*JoinGroupReq) ProtoMessage() {} func (*JoinGroupReq) ProtoMessage() {}
func (*JoinGroupReq) Descriptor() ([]byte, []int) { func (*JoinGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{14} return fileDescriptor_group_8c320ccb494991ed, []int{14}
} }
func (m *JoinGroupReq) XXX_Unmarshal(b []byte) error { func (m *JoinGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_JoinGroupReq.Unmarshal(m, b) return xxx_messageInfo_JoinGroupReq.Unmarshal(m, b)
@ -830,7 +830,7 @@ func (m *JoinGroupResp) Reset() { *m = JoinGroupResp{} }
func (m *JoinGroupResp) String() string { return proto.CompactTextString(m) } func (m *JoinGroupResp) String() string { return proto.CompactTextString(m) }
func (*JoinGroupResp) ProtoMessage() {} func (*JoinGroupResp) ProtoMessage() {}
func (*JoinGroupResp) Descriptor() ([]byte, []int) { func (*JoinGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{15} return fileDescriptor_group_8c320ccb494991ed, []int{15}
} }
func (m *JoinGroupResp) XXX_Unmarshal(b []byte) error { func (m *JoinGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_JoinGroupResp.Unmarshal(m, b) return xxx_messageInfo_JoinGroupResp.Unmarshal(m, b)
@ -873,7 +873,7 @@ func (m *GroupApplicationResponseReq) Reset() { *m = GroupApplicationRes
func (m *GroupApplicationResponseReq) String() string { return proto.CompactTextString(m) } func (m *GroupApplicationResponseReq) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationResponseReq) ProtoMessage() {} func (*GroupApplicationResponseReq) ProtoMessage() {}
func (*GroupApplicationResponseReq) Descriptor() ([]byte, []int) { func (*GroupApplicationResponseReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{16} return fileDescriptor_group_8c320ccb494991ed, []int{16}
} }
func (m *GroupApplicationResponseReq) XXX_Unmarshal(b []byte) error { func (m *GroupApplicationResponseReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupApplicationResponseReq.Unmarshal(m, b) return xxx_messageInfo_GroupApplicationResponseReq.Unmarshal(m, b)
@ -946,7 +946,7 @@ func (m *GroupApplicationResponseResp) Reset() { *m = GroupApplicationRe
func (m *GroupApplicationResponseResp) String() string { return proto.CompactTextString(m) } func (m *GroupApplicationResponseResp) String() string { return proto.CompactTextString(m) }
func (*GroupApplicationResponseResp) ProtoMessage() {} func (*GroupApplicationResponseResp) ProtoMessage() {}
func (*GroupApplicationResponseResp) Descriptor() ([]byte, []int) { func (*GroupApplicationResponseResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{17} return fileDescriptor_group_8c320ccb494991ed, []int{17}
} }
func (m *GroupApplicationResponseResp) XXX_Unmarshal(b []byte) error { func (m *GroupApplicationResponseResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupApplicationResponseResp.Unmarshal(m, b) return xxx_messageInfo_GroupApplicationResponseResp.Unmarshal(m, b)
@ -986,7 +986,7 @@ func (m *QuitGroupReq) Reset() { *m = QuitGroupReq{} }
func (m *QuitGroupReq) String() string { return proto.CompactTextString(m) } func (m *QuitGroupReq) String() string { return proto.CompactTextString(m) }
func (*QuitGroupReq) ProtoMessage() {} func (*QuitGroupReq) ProtoMessage() {}
func (*QuitGroupReq) Descriptor() ([]byte, []int) { func (*QuitGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{18} return fileDescriptor_group_8c320ccb494991ed, []int{18}
} }
func (m *QuitGroupReq) XXX_Unmarshal(b []byte) error { func (m *QuitGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_QuitGroupReq.Unmarshal(m, b) return xxx_messageInfo_QuitGroupReq.Unmarshal(m, b)
@ -1038,7 +1038,7 @@ func (m *QuitGroupResp) Reset() { *m = QuitGroupResp{} }
func (m *QuitGroupResp) String() string { return proto.CompactTextString(m) } func (m *QuitGroupResp) String() string { return proto.CompactTextString(m) }
func (*QuitGroupResp) ProtoMessage() {} func (*QuitGroupResp) ProtoMessage() {}
func (*QuitGroupResp) Descriptor() ([]byte, []int) { func (*QuitGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{19} return fileDescriptor_group_8c320ccb494991ed, []int{19}
} }
func (m *QuitGroupResp) XXX_Unmarshal(b []byte) error { func (m *QuitGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_QuitGroupResp.Unmarshal(m, b) return xxx_messageInfo_QuitGroupResp.Unmarshal(m, b)
@ -1080,7 +1080,7 @@ func (m *GetGroupMemberListReq) Reset() { *m = GetGroupMemberListReq{} }
func (m *GetGroupMemberListReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupMemberListReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupMemberListReq) ProtoMessage() {} func (*GetGroupMemberListReq) ProtoMessage() {}
func (*GetGroupMemberListReq) Descriptor() ([]byte, []int) { func (*GetGroupMemberListReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{20} return fileDescriptor_group_8c320ccb494991ed, []int{20}
} }
func (m *GetGroupMemberListReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupMemberListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMemberListReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupMemberListReq.Unmarshal(m, b)
@ -1149,7 +1149,7 @@ func (m *GetGroupMemberListResp) Reset() { *m = GetGroupMemberListResp{}
func (m *GetGroupMemberListResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupMemberListResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupMemberListResp) ProtoMessage() {} func (*GetGroupMemberListResp) ProtoMessage() {}
func (*GetGroupMemberListResp) Descriptor() ([]byte, []int) { func (*GetGroupMemberListResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{21} return fileDescriptor_group_8c320ccb494991ed, []int{21}
} }
func (m *GetGroupMemberListResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupMemberListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMemberListResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupMemberListResp.Unmarshal(m, b)
@ -1211,7 +1211,7 @@ func (m *GetGroupMembersInfoReq) Reset() { *m = GetGroupMembersInfoReq{}
func (m *GetGroupMembersInfoReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupMembersInfoReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupMembersInfoReq) ProtoMessage() {} func (*GetGroupMembersInfoReq) ProtoMessage() {}
func (*GetGroupMembersInfoReq) Descriptor() ([]byte, []int) { func (*GetGroupMembersInfoReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{22} return fileDescriptor_group_8c320ccb494991ed, []int{22}
} }
func (m *GetGroupMembersInfoReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupMembersInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMembersInfoReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupMembersInfoReq.Unmarshal(m, b)
@ -1272,7 +1272,7 @@ func (m *GetGroupMembersInfoResp) Reset() { *m = GetGroupMembersInfoResp
func (m *GetGroupMembersInfoResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupMembersInfoResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupMembersInfoResp) ProtoMessage() {} func (*GetGroupMembersInfoResp) ProtoMessage() {}
func (*GetGroupMembersInfoResp) Descriptor() ([]byte, []int) { func (*GetGroupMembersInfoResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{23} return fileDescriptor_group_8c320ccb494991ed, []int{23}
} }
func (m *GetGroupMembersInfoResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupMembersInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMembersInfoResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupMembersInfoResp.Unmarshal(m, b)
@ -1328,7 +1328,7 @@ func (m *KickGroupMemberReq) Reset() { *m = KickGroupMemberReq{} }
func (m *KickGroupMemberReq) String() string { return proto.CompactTextString(m) } func (m *KickGroupMemberReq) String() string { return proto.CompactTextString(m) }
func (*KickGroupMemberReq) ProtoMessage() {} func (*KickGroupMemberReq) ProtoMessage() {}
func (*KickGroupMemberReq) Descriptor() ([]byte, []int) { func (*KickGroupMemberReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{24} return fileDescriptor_group_8c320ccb494991ed, []int{24}
} }
func (m *KickGroupMemberReq) XXX_Unmarshal(b []byte) error { func (m *KickGroupMemberReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_KickGroupMemberReq.Unmarshal(m, b) return xxx_messageInfo_KickGroupMemberReq.Unmarshal(m, b)
@ -1395,7 +1395,7 @@ func (m *Id2Result) Reset() { *m = Id2Result{} }
func (m *Id2Result) String() string { return proto.CompactTextString(m) } func (m *Id2Result) String() string { return proto.CompactTextString(m) }
func (*Id2Result) ProtoMessage() {} func (*Id2Result) ProtoMessage() {}
func (*Id2Result) Descriptor() ([]byte, []int) { func (*Id2Result) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{25} return fileDescriptor_group_8c320ccb494991ed, []int{25}
} }
func (m *Id2Result) XXX_Unmarshal(b []byte) error { func (m *Id2Result) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Id2Result.Unmarshal(m, b) return xxx_messageInfo_Id2Result.Unmarshal(m, b)
@ -1442,7 +1442,7 @@ func (m *KickGroupMemberResp) Reset() { *m = KickGroupMemberResp{} }
func (m *KickGroupMemberResp) String() string { return proto.CompactTextString(m) } func (m *KickGroupMemberResp) String() string { return proto.CompactTextString(m) }
func (*KickGroupMemberResp) ProtoMessage() {} func (*KickGroupMemberResp) ProtoMessage() {}
func (*KickGroupMemberResp) Descriptor() ([]byte, []int) { func (*KickGroupMemberResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{26} return fileDescriptor_group_8c320ccb494991ed, []int{26}
} }
func (m *KickGroupMemberResp) XXX_Unmarshal(b []byte) error { func (m *KickGroupMemberResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_KickGroupMemberResp.Unmarshal(m, b) return xxx_messageInfo_KickGroupMemberResp.Unmarshal(m, b)
@ -1496,7 +1496,7 @@ func (m *GetJoinedGroupListReq) Reset() { *m = GetJoinedGroupListReq{} }
func (m *GetJoinedGroupListReq) String() string { return proto.CompactTextString(m) } func (m *GetJoinedGroupListReq) String() string { return proto.CompactTextString(m) }
func (*GetJoinedGroupListReq) ProtoMessage() {} func (*GetJoinedGroupListReq) ProtoMessage() {}
func (*GetJoinedGroupListReq) Descriptor() ([]byte, []int) { func (*GetJoinedGroupListReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{27} return fileDescriptor_group_8c320ccb494991ed, []int{27}
} }
func (m *GetJoinedGroupListReq) XXX_Unmarshal(b []byte) error { func (m *GetJoinedGroupListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetJoinedGroupListReq.Unmarshal(m, b) return xxx_messageInfo_GetJoinedGroupListReq.Unmarshal(m, b)
@ -1550,7 +1550,7 @@ func (m *GetJoinedGroupListResp) Reset() { *m = GetJoinedGroupListResp{}
func (m *GetJoinedGroupListResp) String() string { return proto.CompactTextString(m) } func (m *GetJoinedGroupListResp) String() string { return proto.CompactTextString(m) }
func (*GetJoinedGroupListResp) ProtoMessage() {} func (*GetJoinedGroupListResp) ProtoMessage() {}
func (*GetJoinedGroupListResp) Descriptor() ([]byte, []int) { func (*GetJoinedGroupListResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{28} return fileDescriptor_group_8c320ccb494991ed, []int{28}
} }
func (m *GetJoinedGroupListResp) XXX_Unmarshal(b []byte) error { func (m *GetJoinedGroupListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetJoinedGroupListResp.Unmarshal(m, b) return xxx_messageInfo_GetJoinedGroupListResp.Unmarshal(m, b)
@ -1606,7 +1606,7 @@ func (m *InviteUserToGroupReq) Reset() { *m = InviteUserToGroupReq{} }
func (m *InviteUserToGroupReq) String() string { return proto.CompactTextString(m) } func (m *InviteUserToGroupReq) String() string { return proto.CompactTextString(m) }
func (*InviteUserToGroupReq) ProtoMessage() {} func (*InviteUserToGroupReq) ProtoMessage() {}
func (*InviteUserToGroupReq) Descriptor() ([]byte, []int) { func (*InviteUserToGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{29} return fileDescriptor_group_8c320ccb494991ed, []int{29}
} }
func (m *InviteUserToGroupReq) XXX_Unmarshal(b []byte) error { func (m *InviteUserToGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InviteUserToGroupReq.Unmarshal(m, b) return xxx_messageInfo_InviteUserToGroupReq.Unmarshal(m, b)
@ -1674,7 +1674,7 @@ func (m *InviteUserToGroupResp) Reset() { *m = InviteUserToGroupResp{} }
func (m *InviteUserToGroupResp) String() string { return proto.CompactTextString(m) } func (m *InviteUserToGroupResp) String() string { return proto.CompactTextString(m) }
func (*InviteUserToGroupResp) ProtoMessage() {} func (*InviteUserToGroupResp) ProtoMessage() {}
func (*InviteUserToGroupResp) Descriptor() ([]byte, []int) { func (*InviteUserToGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{30} return fileDescriptor_group_8c320ccb494991ed, []int{30}
} }
func (m *InviteUserToGroupResp) XXX_Unmarshal(b []byte) error { func (m *InviteUserToGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InviteUserToGroupResp.Unmarshal(m, b) return xxx_messageInfo_InviteUserToGroupResp.Unmarshal(m, b)
@ -1728,7 +1728,7 @@ func (m *GetGroupAllMemberReq) Reset() { *m = GetGroupAllMemberReq{} }
func (m *GetGroupAllMemberReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupAllMemberReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupAllMemberReq) ProtoMessage() {} func (*GetGroupAllMemberReq) ProtoMessage() {}
func (*GetGroupAllMemberReq) Descriptor() ([]byte, []int) { func (*GetGroupAllMemberReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{31} return fileDescriptor_group_8c320ccb494991ed, []int{31}
} }
func (m *GetGroupAllMemberReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupAllMemberReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupAllMemberReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupAllMemberReq.Unmarshal(m, b)
@ -1782,7 +1782,7 @@ func (m *GetGroupAllMemberResp) Reset() { *m = GetGroupAllMemberResp{} }
func (m *GetGroupAllMemberResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupAllMemberResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupAllMemberResp) ProtoMessage() {} func (*GetGroupAllMemberResp) ProtoMessage() {}
func (*GetGroupAllMemberResp) Descriptor() ([]byte, []int) { func (*GetGroupAllMemberResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{32} return fileDescriptor_group_8c320ccb494991ed, []int{32}
} }
func (m *GetGroupAllMemberResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupAllMemberResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupAllMemberResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupAllMemberResp.Unmarshal(m, b)
@ -1836,7 +1836,7 @@ func (m *CMSGroup) Reset() { *m = CMSGroup{} }
func (m *CMSGroup) String() string { return proto.CompactTextString(m) } func (m *CMSGroup) String() string { return proto.CompactTextString(m) }
func (*CMSGroup) ProtoMessage() {} func (*CMSGroup) ProtoMessage() {}
func (*CMSGroup) Descriptor() ([]byte, []int) { func (*CMSGroup) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{33} return fileDescriptor_group_8c320ccb494991ed, []int{33}
} }
func (m *CMSGroup) XXX_Unmarshal(b []byte) error { func (m *CMSGroup) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CMSGroup.Unmarshal(m, b) return xxx_messageInfo_CMSGroup.Unmarshal(m, b)
@ -1890,7 +1890,7 @@ func (m *GetGroupReq) Reset() { *m = GetGroupReq{} }
func (m *GetGroupReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupReq) ProtoMessage() {} func (*GetGroupReq) ProtoMessage() {}
func (*GetGroupReq) Descriptor() ([]byte, []int) { func (*GetGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{34} return fileDescriptor_group_8c320ccb494991ed, []int{34}
} }
func (m *GetGroupReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupReq.Unmarshal(m, b)
@ -1944,7 +1944,7 @@ func (m *GetGroupResp) Reset() { *m = GetGroupResp{} }
func (m *GetGroupResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupResp) ProtoMessage() {} func (*GetGroupResp) ProtoMessage() {}
func (*GetGroupResp) Descriptor() ([]byte, []int) { func (*GetGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{35} return fileDescriptor_group_8c320ccb494991ed, []int{35}
} }
func (m *GetGroupResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupResp.Unmarshal(m, b)
@ -1997,7 +1997,7 @@ func (m *GetGroupsReq) Reset() { *m = GetGroupsReq{} }
func (m *GetGroupsReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupsReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupsReq) ProtoMessage() {} func (*GetGroupsReq) ProtoMessage() {}
func (*GetGroupsReq) Descriptor() ([]byte, []int) { func (*GetGroupsReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{36} return fileDescriptor_group_8c320ccb494991ed, []int{36}
} }
func (m *GetGroupsReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupsReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupsReq.Unmarshal(m, b)
@ -2044,7 +2044,7 @@ func (m *GetGroupsResp) Reset() { *m = GetGroupsResp{} }
func (m *GetGroupsResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupsResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupsResp) ProtoMessage() {} func (*GetGroupsResp) ProtoMessage() {}
func (*GetGroupsResp) Descriptor() ([]byte, []int) { func (*GetGroupsResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{37} return fileDescriptor_group_8c320ccb494991ed, []int{37}
} }
func (m *GetGroupsResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupsResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupsResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupsResp.Unmarshal(m, b)
@ -2097,7 +2097,7 @@ func (m *GetGroupMemberReq) Reset() { *m = GetGroupMemberReq{} }
func (m *GetGroupMemberReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupMemberReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupMemberReq) ProtoMessage() {} func (*GetGroupMemberReq) ProtoMessage() {}
func (*GetGroupMemberReq) Descriptor() ([]byte, []int) { func (*GetGroupMemberReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{38} return fileDescriptor_group_8c320ccb494991ed, []int{38}
} }
func (m *GetGroupMemberReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupMemberReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMemberReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupMemberReq.Unmarshal(m, b)
@ -2144,7 +2144,7 @@ func (m *OperateGroupStatusReq) Reset() { *m = OperateGroupStatusReq{} }
func (m *OperateGroupStatusReq) String() string { return proto.CompactTextString(m) } func (m *OperateGroupStatusReq) String() string { return proto.CompactTextString(m) }
func (*OperateGroupStatusReq) ProtoMessage() {} func (*OperateGroupStatusReq) ProtoMessage() {}
func (*OperateGroupStatusReq) Descriptor() ([]byte, []int) { func (*OperateGroupStatusReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{39} return fileDescriptor_group_8c320ccb494991ed, []int{39}
} }
func (m *OperateGroupStatusReq) XXX_Unmarshal(b []byte) error { func (m *OperateGroupStatusReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OperateGroupStatusReq.Unmarshal(m, b) return xxx_messageInfo_OperateGroupStatusReq.Unmarshal(m, b)
@ -2195,7 +2195,7 @@ func (m *OperateGroupStatusResp) Reset() { *m = OperateGroupStatusResp{}
func (m *OperateGroupStatusResp) String() string { return proto.CompactTextString(m) } func (m *OperateGroupStatusResp) String() string { return proto.CompactTextString(m) }
func (*OperateGroupStatusResp) ProtoMessage() {} func (*OperateGroupStatusResp) ProtoMessage() {}
func (*OperateGroupStatusResp) Descriptor() ([]byte, []int) { func (*OperateGroupStatusResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{40} return fileDescriptor_group_8c320ccb494991ed, []int{40}
} }
func (m *OperateGroupStatusResp) XXX_Unmarshal(b []byte) error { func (m *OperateGroupStatusResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OperateGroupStatusResp.Unmarshal(m, b) return xxx_messageInfo_OperateGroupStatusResp.Unmarshal(m, b)
@ -2229,7 +2229,7 @@ func (m *OperateUserRoleReq) Reset() { *m = OperateUserRoleReq{} }
func (m *OperateUserRoleReq) String() string { return proto.CompactTextString(m) } func (m *OperateUserRoleReq) String() string { return proto.CompactTextString(m) }
func (*OperateUserRoleReq) ProtoMessage() {} func (*OperateUserRoleReq) ProtoMessage() {}
func (*OperateUserRoleReq) Descriptor() ([]byte, []int) { func (*OperateUserRoleReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{41} return fileDescriptor_group_8c320ccb494991ed, []int{41}
} }
func (m *OperateUserRoleReq) XXX_Unmarshal(b []byte) error { func (m *OperateUserRoleReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OperateUserRoleReq.Unmarshal(m, b) return xxx_messageInfo_OperateUserRoleReq.Unmarshal(m, b)
@ -2287,7 +2287,7 @@ func (m *OperateUserRoleResp) Reset() { *m = OperateUserRoleResp{} }
func (m *OperateUserRoleResp) String() string { return proto.CompactTextString(m) } func (m *OperateUserRoleResp) String() string { return proto.CompactTextString(m) }
func (*OperateUserRoleResp) ProtoMessage() {} func (*OperateUserRoleResp) ProtoMessage() {}
func (*OperateUserRoleResp) Descriptor() ([]byte, []int) { func (*OperateUserRoleResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{42} return fileDescriptor_group_8c320ccb494991ed, []int{42}
} }
func (m *OperateUserRoleResp) XXX_Unmarshal(b []byte) error { func (m *OperateUserRoleResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OperateUserRoleResp.Unmarshal(m, b) return xxx_messageInfo_OperateUserRoleResp.Unmarshal(m, b)
@ -2319,7 +2319,7 @@ func (m *DeleteGroupReq) Reset() { *m = DeleteGroupReq{} }
func (m *DeleteGroupReq) String() string { return proto.CompactTextString(m) } func (m *DeleteGroupReq) String() string { return proto.CompactTextString(m) }
func (*DeleteGroupReq) ProtoMessage() {} func (*DeleteGroupReq) ProtoMessage() {}
func (*DeleteGroupReq) Descriptor() ([]byte, []int) { func (*DeleteGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{43} return fileDescriptor_group_8c320ccb494991ed, []int{43}
} }
func (m *DeleteGroupReq) XXX_Unmarshal(b []byte) error { func (m *DeleteGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteGroupReq.Unmarshal(m, b) return xxx_messageInfo_DeleteGroupReq.Unmarshal(m, b)
@ -2363,7 +2363,7 @@ func (m *DeleteGroupResp) Reset() { *m = DeleteGroupResp{} }
func (m *DeleteGroupResp) String() string { return proto.CompactTextString(m) } func (m *DeleteGroupResp) String() string { return proto.CompactTextString(m) }
func (*DeleteGroupResp) ProtoMessage() {} func (*DeleteGroupResp) ProtoMessage() {}
func (*DeleteGroupResp) Descriptor() ([]byte, []int) { func (*DeleteGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{44} return fileDescriptor_group_8c320ccb494991ed, []int{44}
} }
func (m *DeleteGroupResp) XXX_Unmarshal(b []byte) error { func (m *DeleteGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteGroupResp.Unmarshal(m, b) return xxx_messageInfo_DeleteGroupResp.Unmarshal(m, b)
@ -2395,7 +2395,7 @@ func (m *GetGroupByIdReq) Reset() { *m = GetGroupByIdReq{} }
func (m *GetGroupByIdReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupByIdReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupByIdReq) ProtoMessage() {} func (*GetGroupByIdReq) ProtoMessage() {}
func (*GetGroupByIdReq) Descriptor() ([]byte, []int) { func (*GetGroupByIdReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{45} return fileDescriptor_group_8c320ccb494991ed, []int{45}
} }
func (m *GetGroupByIdReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupByIdReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupByIdReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupByIdReq.Unmarshal(m, b)
@ -2440,7 +2440,7 @@ func (m *GetGroupByIdResp) Reset() { *m = GetGroupByIdResp{} }
func (m *GetGroupByIdResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupByIdResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupByIdResp) ProtoMessage() {} func (*GetGroupByIdResp) ProtoMessage() {}
func (*GetGroupByIdResp) Descriptor() ([]byte, []int) { func (*GetGroupByIdResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{46} return fileDescriptor_group_8c320ccb494991ed, []int{46}
} }
func (m *GetGroupByIdResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupByIdResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupByIdResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupByIdResp.Unmarshal(m, b)
@ -2481,7 +2481,7 @@ func (m *GetGroupMembersCMSReq) Reset() { *m = GetGroupMembersCMSReq{} }
func (m *GetGroupMembersCMSReq) String() string { return proto.CompactTextString(m) } func (m *GetGroupMembersCMSReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupMembersCMSReq) ProtoMessage() {} func (*GetGroupMembersCMSReq) ProtoMessage() {}
func (*GetGroupMembersCMSReq) Descriptor() ([]byte, []int) { func (*GetGroupMembersCMSReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{47} return fileDescriptor_group_8c320ccb494991ed, []int{47}
} }
func (m *GetGroupMembersCMSReq) XXX_Unmarshal(b []byte) error { func (m *GetGroupMembersCMSReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMembersCMSReq.Unmarshal(m, b) return xxx_messageInfo_GetGroupMembersCMSReq.Unmarshal(m, b)
@ -2542,7 +2542,7 @@ func (m *GetGroupMembersCMSResp) Reset() { *m = GetGroupMembersCMSResp{}
func (m *GetGroupMembersCMSResp) String() string { return proto.CompactTextString(m) } func (m *GetGroupMembersCMSResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupMembersCMSResp) ProtoMessage() {} func (*GetGroupMembersCMSResp) ProtoMessage() {}
func (*GetGroupMembersCMSResp) Descriptor() ([]byte, []int) { func (*GetGroupMembersCMSResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{48} return fileDescriptor_group_8c320ccb494991ed, []int{48}
} }
func (m *GetGroupMembersCMSResp) XXX_Unmarshal(b []byte) error { func (m *GetGroupMembersCMSResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupMembersCMSResp.Unmarshal(m, b) return xxx_messageInfo_GetGroupMembersCMSResp.Unmarshal(m, b)
@ -2597,7 +2597,7 @@ func (m *RemoveGroupMembersCMSReq) Reset() { *m = RemoveGroupMembersCMSR
func (m *RemoveGroupMembersCMSReq) String() string { return proto.CompactTextString(m) } func (m *RemoveGroupMembersCMSReq) String() string { return proto.CompactTextString(m) }
func (*RemoveGroupMembersCMSReq) ProtoMessage() {} func (*RemoveGroupMembersCMSReq) ProtoMessage() {}
func (*RemoveGroupMembersCMSReq) Descriptor() ([]byte, []int) { func (*RemoveGroupMembersCMSReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{49} return fileDescriptor_group_8c320ccb494991ed, []int{49}
} }
func (m *RemoveGroupMembersCMSReq) XXX_Unmarshal(b []byte) error { func (m *RemoveGroupMembersCMSReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveGroupMembersCMSReq.Unmarshal(m, b) return xxx_messageInfo_RemoveGroupMembersCMSReq.Unmarshal(m, b)
@ -2657,7 +2657,7 @@ func (m *RemoveGroupMembersCMSResp) Reset() { *m = RemoveGroupMembersCMS
func (m *RemoveGroupMembersCMSResp) String() string { return proto.CompactTextString(m) } func (m *RemoveGroupMembersCMSResp) String() string { return proto.CompactTextString(m) }
func (*RemoveGroupMembersCMSResp) ProtoMessage() {} func (*RemoveGroupMembersCMSResp) ProtoMessage() {}
func (*RemoveGroupMembersCMSResp) Descriptor() ([]byte, []int) { func (*RemoveGroupMembersCMSResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{50} return fileDescriptor_group_8c320ccb494991ed, []int{50}
} }
func (m *RemoveGroupMembersCMSResp) XXX_Unmarshal(b []byte) error { func (m *RemoveGroupMembersCMSResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveGroupMembersCMSResp.Unmarshal(m, b) return xxx_messageInfo_RemoveGroupMembersCMSResp.Unmarshal(m, b)
@ -2705,7 +2705,7 @@ func (m *AddGroupMembersCMSReq) Reset() { *m = AddGroupMembersCMSReq{} }
func (m *AddGroupMembersCMSReq) String() string { return proto.CompactTextString(m) } func (m *AddGroupMembersCMSReq) String() string { return proto.CompactTextString(m) }
func (*AddGroupMembersCMSReq) ProtoMessage() {} func (*AddGroupMembersCMSReq) ProtoMessage() {}
func (*AddGroupMembersCMSReq) Descriptor() ([]byte, []int) { func (*AddGroupMembersCMSReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{51} return fileDescriptor_group_8c320ccb494991ed, []int{51}
} }
func (m *AddGroupMembersCMSReq) XXX_Unmarshal(b []byte) error { func (m *AddGroupMembersCMSReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddGroupMembersCMSReq.Unmarshal(m, b) return xxx_messageInfo_AddGroupMembersCMSReq.Unmarshal(m, b)
@ -2765,7 +2765,7 @@ func (m *AddGroupMembersCMSResp) Reset() { *m = AddGroupMembersCMSResp{}
func (m *AddGroupMembersCMSResp) String() string { return proto.CompactTextString(m) } func (m *AddGroupMembersCMSResp) String() string { return proto.CompactTextString(m) }
func (*AddGroupMembersCMSResp) ProtoMessage() {} func (*AddGroupMembersCMSResp) ProtoMessage() {}
func (*AddGroupMembersCMSResp) Descriptor() ([]byte, []int) { func (*AddGroupMembersCMSResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{52} return fileDescriptor_group_8c320ccb494991ed, []int{52}
} }
func (m *AddGroupMembersCMSResp) XXX_Unmarshal(b []byte) error { func (m *AddGroupMembersCMSResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddGroupMembersCMSResp.Unmarshal(m, b) return xxx_messageInfo_AddGroupMembersCMSResp.Unmarshal(m, b)
@ -2812,7 +2812,7 @@ func (m *DismissGroupReq) Reset() { *m = DismissGroupReq{} }
func (m *DismissGroupReq) String() string { return proto.CompactTextString(m) } func (m *DismissGroupReq) String() string { return proto.CompactTextString(m) }
func (*DismissGroupReq) ProtoMessage() {} func (*DismissGroupReq) ProtoMessage() {}
func (*DismissGroupReq) Descriptor() ([]byte, []int) { func (*DismissGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{53} return fileDescriptor_group_8c320ccb494991ed, []int{53}
} }
func (m *DismissGroupReq) XXX_Unmarshal(b []byte) error { func (m *DismissGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DismissGroupReq.Unmarshal(m, b) return xxx_messageInfo_DismissGroupReq.Unmarshal(m, b)
@ -2864,7 +2864,7 @@ func (m *DismissGroupResp) Reset() { *m = DismissGroupResp{} }
func (m *DismissGroupResp) String() string { return proto.CompactTextString(m) } func (m *DismissGroupResp) String() string { return proto.CompactTextString(m) }
func (*DismissGroupResp) ProtoMessage() {} func (*DismissGroupResp) ProtoMessage() {}
func (*DismissGroupResp) Descriptor() ([]byte, []int) { func (*DismissGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{54} return fileDescriptor_group_8c320ccb494991ed, []int{54}
} }
func (m *DismissGroupResp) XXX_Unmarshal(b []byte) error { func (m *DismissGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DismissGroupResp.Unmarshal(m, b) return xxx_messageInfo_DismissGroupResp.Unmarshal(m, b)
@ -2906,7 +2906,7 @@ func (m *MuteGroupMemberReq) Reset() { *m = MuteGroupMemberReq{} }
func (m *MuteGroupMemberReq) String() string { return proto.CompactTextString(m) } func (m *MuteGroupMemberReq) String() string { return proto.CompactTextString(m) }
func (*MuteGroupMemberReq) ProtoMessage() {} func (*MuteGroupMemberReq) ProtoMessage() {}
func (*MuteGroupMemberReq) Descriptor() ([]byte, []int) { func (*MuteGroupMemberReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{55} return fileDescriptor_group_8c320ccb494991ed, []int{55}
} }
func (m *MuteGroupMemberReq) XXX_Unmarshal(b []byte) error { func (m *MuteGroupMemberReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MuteGroupMemberReq.Unmarshal(m, b) return xxx_messageInfo_MuteGroupMemberReq.Unmarshal(m, b)
@ -2972,7 +2972,7 @@ func (m *MuteGroupMemberResp) Reset() { *m = MuteGroupMemberResp{} }
func (m *MuteGroupMemberResp) String() string { return proto.CompactTextString(m) } func (m *MuteGroupMemberResp) String() string { return proto.CompactTextString(m) }
func (*MuteGroupMemberResp) ProtoMessage() {} func (*MuteGroupMemberResp) ProtoMessage() {}
func (*MuteGroupMemberResp) Descriptor() ([]byte, []int) { func (*MuteGroupMemberResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{56} return fileDescriptor_group_8c320ccb494991ed, []int{56}
} }
func (m *MuteGroupMemberResp) XXX_Unmarshal(b []byte) error { func (m *MuteGroupMemberResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MuteGroupMemberResp.Unmarshal(m, b) return xxx_messageInfo_MuteGroupMemberResp.Unmarshal(m, b)
@ -3013,7 +3013,7 @@ func (m *CancelMuteGroupMemberReq) Reset() { *m = CancelMuteGroupMemberR
func (m *CancelMuteGroupMemberReq) String() string { return proto.CompactTextString(m) } func (m *CancelMuteGroupMemberReq) String() string { return proto.CompactTextString(m) }
func (*CancelMuteGroupMemberReq) ProtoMessage() {} func (*CancelMuteGroupMemberReq) ProtoMessage() {}
func (*CancelMuteGroupMemberReq) Descriptor() ([]byte, []int) { func (*CancelMuteGroupMemberReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{57} return fileDescriptor_group_8c320ccb494991ed, []int{57}
} }
func (m *CancelMuteGroupMemberReq) XXX_Unmarshal(b []byte) error { func (m *CancelMuteGroupMemberReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CancelMuteGroupMemberReq.Unmarshal(m, b) return xxx_messageInfo_CancelMuteGroupMemberReq.Unmarshal(m, b)
@ -3072,7 +3072,7 @@ func (m *CancelMuteGroupMemberResp) Reset() { *m = CancelMuteGroupMember
func (m *CancelMuteGroupMemberResp) String() string { return proto.CompactTextString(m) } func (m *CancelMuteGroupMemberResp) String() string { return proto.CompactTextString(m) }
func (*CancelMuteGroupMemberResp) ProtoMessage() {} func (*CancelMuteGroupMemberResp) ProtoMessage() {}
func (*CancelMuteGroupMemberResp) Descriptor() ([]byte, []int) { func (*CancelMuteGroupMemberResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{58} return fileDescriptor_group_8c320ccb494991ed, []int{58}
} }
func (m *CancelMuteGroupMemberResp) XXX_Unmarshal(b []byte) error { func (m *CancelMuteGroupMemberResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CancelMuteGroupMemberResp.Unmarshal(m, b) return xxx_messageInfo_CancelMuteGroupMemberResp.Unmarshal(m, b)
@ -3112,7 +3112,7 @@ func (m *MuteGroupReq) Reset() { *m = MuteGroupReq{} }
func (m *MuteGroupReq) String() string { return proto.CompactTextString(m) } func (m *MuteGroupReq) String() string { return proto.CompactTextString(m) }
func (*MuteGroupReq) ProtoMessage() {} func (*MuteGroupReq) ProtoMessage() {}
func (*MuteGroupReq) Descriptor() ([]byte, []int) { func (*MuteGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{59} return fileDescriptor_group_8c320ccb494991ed, []int{59}
} }
func (m *MuteGroupReq) XXX_Unmarshal(b []byte) error { func (m *MuteGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MuteGroupReq.Unmarshal(m, b) return xxx_messageInfo_MuteGroupReq.Unmarshal(m, b)
@ -3164,7 +3164,7 @@ func (m *MuteGroupResp) Reset() { *m = MuteGroupResp{} }
func (m *MuteGroupResp) String() string { return proto.CompactTextString(m) } func (m *MuteGroupResp) String() string { return proto.CompactTextString(m) }
func (*MuteGroupResp) ProtoMessage() {} func (*MuteGroupResp) ProtoMessage() {}
func (*MuteGroupResp) Descriptor() ([]byte, []int) { func (*MuteGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{60} return fileDescriptor_group_8c320ccb494991ed, []int{60}
} }
func (m *MuteGroupResp) XXX_Unmarshal(b []byte) error { func (m *MuteGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MuteGroupResp.Unmarshal(m, b) return xxx_messageInfo_MuteGroupResp.Unmarshal(m, b)
@ -3204,7 +3204,7 @@ func (m *CancelMuteGroupReq) Reset() { *m = CancelMuteGroupReq{} }
func (m *CancelMuteGroupReq) String() string { return proto.CompactTextString(m) } func (m *CancelMuteGroupReq) String() string { return proto.CompactTextString(m) }
func (*CancelMuteGroupReq) ProtoMessage() {} func (*CancelMuteGroupReq) ProtoMessage() {}
func (*CancelMuteGroupReq) Descriptor() ([]byte, []int) { func (*CancelMuteGroupReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{61} return fileDescriptor_group_8c320ccb494991ed, []int{61}
} }
func (m *CancelMuteGroupReq) XXX_Unmarshal(b []byte) error { func (m *CancelMuteGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CancelMuteGroupReq.Unmarshal(m, b) return xxx_messageInfo_CancelMuteGroupReq.Unmarshal(m, b)
@ -3256,7 +3256,7 @@ func (m *CancelMuteGroupResp) Reset() { *m = CancelMuteGroupResp{} }
func (m *CancelMuteGroupResp) String() string { return proto.CompactTextString(m) } func (m *CancelMuteGroupResp) String() string { return proto.CompactTextString(m) }
func (*CancelMuteGroupResp) ProtoMessage() {} func (*CancelMuteGroupResp) ProtoMessage() {}
func (*CancelMuteGroupResp) Descriptor() ([]byte, []int) { func (*CancelMuteGroupResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{62} return fileDescriptor_group_8c320ccb494991ed, []int{62}
} }
func (m *CancelMuteGroupResp) XXX_Unmarshal(b []byte) error { func (m *CancelMuteGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CancelMuteGroupResp.Unmarshal(m, b) return xxx_messageInfo_CancelMuteGroupResp.Unmarshal(m, b)
@ -3298,7 +3298,7 @@ func (m *SetGroupMemberNicknameReq) Reset() { *m = SetGroupMemberNicknam
func (m *SetGroupMemberNicknameReq) String() string { return proto.CompactTextString(m) } func (m *SetGroupMemberNicknameReq) String() string { return proto.CompactTextString(m) }
func (*SetGroupMemberNicknameReq) ProtoMessage() {} func (*SetGroupMemberNicknameReq) ProtoMessage() {}
func (*SetGroupMemberNicknameReq) Descriptor() ([]byte, []int) { func (*SetGroupMemberNicknameReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{63} return fileDescriptor_group_8c320ccb494991ed, []int{63}
} }
func (m *SetGroupMemberNicknameReq) XXX_Unmarshal(b []byte) error { func (m *SetGroupMemberNicknameReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetGroupMemberNicknameReq.Unmarshal(m, b) return xxx_messageInfo_SetGroupMemberNicknameReq.Unmarshal(m, b)
@ -3364,7 +3364,7 @@ func (m *SetGroupMemberNicknameResp) Reset() { *m = SetGroupMemberNickna
func (m *SetGroupMemberNicknameResp) String() string { return proto.CompactTextString(m) } func (m *SetGroupMemberNicknameResp) String() string { return proto.CompactTextString(m) }
func (*SetGroupMemberNicknameResp) ProtoMessage() {} func (*SetGroupMemberNicknameResp) ProtoMessage() {}
func (*SetGroupMemberNicknameResp) Descriptor() ([]byte, []int) { func (*SetGroupMemberNicknameResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{64} return fileDescriptor_group_8c320ccb494991ed, []int{64}
} }
func (m *SetGroupMemberNicknameResp) XXX_Unmarshal(b []byte) error { func (m *SetGroupMemberNicknameResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetGroupMemberNicknameResp.Unmarshal(m, b) return xxx_messageInfo_SetGroupMemberNicknameResp.Unmarshal(m, b)
@ -3394,11 +3394,12 @@ func (m *SetGroupMemberNicknameResp) GetCommonResp() *CommonResp {
type SetGroupMemberInfoReq struct { type SetGroupMemberInfoReq struct {
GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"` GroupID string `protobuf:"bytes,1,opt,name=groupID" json:"groupID,omitempty"`
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"` UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"` OpUserID string `protobuf:"bytes,3,opt,name=opUserID" json:"opUserID,omitempty"`
Nickname *wrapperspb.StringValue `protobuf:"bytes,4,opt,name=nickname" json:"nickname,omitempty"` OperationID string `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"`
FaceURL *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=faceURL" json:"faceURL,omitempty"` Nickname *wrapperspb.StringValue `protobuf:"bytes,5,opt,name=nickname" json:"nickname,omitempty"`
RoleLevel *wrapperspb.Int32Value `protobuf:"bytes,6,opt,name=roleLevel" json:"roleLevel,omitempty"` FaceURL *wrapperspb.StringValue `protobuf:"bytes,6,opt,name=faceURL" json:"faceURL,omitempty"`
Ex *wrapperspb.StringValue `protobuf:"bytes,7,opt,name=ex" json:"ex,omitempty"` RoleLevel *wrapperspb.Int32Value `protobuf:"bytes,7,opt,name=roleLevel" json:"roleLevel,omitempty"`
Ex *wrapperspb.StringValue `protobuf:"bytes,8,opt,name=ex" json:"ex,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"` XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"` XXX_sizecache int32 `json:"-"`
@ -3408,7 +3409,7 @@ func (m *SetGroupMemberInfoReq) Reset() { *m = SetGroupMemberInfoReq{} }
func (m *SetGroupMemberInfoReq) String() string { return proto.CompactTextString(m) } func (m *SetGroupMemberInfoReq) String() string { return proto.CompactTextString(m) }
func (*SetGroupMemberInfoReq) ProtoMessage() {} func (*SetGroupMemberInfoReq) ProtoMessage() {}
func (*SetGroupMemberInfoReq) Descriptor() ([]byte, []int) { func (*SetGroupMemberInfoReq) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{65} return fileDescriptor_group_8c320ccb494991ed, []int{65}
} }
func (m *SetGroupMemberInfoReq) XXX_Unmarshal(b []byte) error { func (m *SetGroupMemberInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetGroupMemberInfoReq.Unmarshal(m, b) return xxx_messageInfo_SetGroupMemberInfoReq.Unmarshal(m, b)
@ -3442,6 +3443,13 @@ func (m *SetGroupMemberInfoReq) GetUserID() string {
return "" return ""
} }
func (m *SetGroupMemberInfoReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
func (m *SetGroupMemberInfoReq) GetOperationID() string { func (m *SetGroupMemberInfoReq) GetOperationID() string {
if m != nil { if m != nil {
return m.OperationID return m.OperationID
@ -3488,7 +3496,7 @@ func (m *SetGroupMemberInfoResp) Reset() { *m = SetGroupMemberInfoResp{}
func (m *SetGroupMemberInfoResp) String() string { return proto.CompactTextString(m) } func (m *SetGroupMemberInfoResp) String() string { return proto.CompactTextString(m) }
func (*SetGroupMemberInfoResp) ProtoMessage() {} func (*SetGroupMemberInfoResp) ProtoMessage() {}
func (*SetGroupMemberInfoResp) Descriptor() ([]byte, []int) { func (*SetGroupMemberInfoResp) Descriptor() ([]byte, []int) {
return fileDescriptor_group_e5947a1008c7a757, []int{66} return fileDescriptor_group_8c320ccb494991ed, []int{66}
} }
func (m *SetGroupMemberInfoResp) XXX_Unmarshal(b []byte) error { func (m *SetGroupMemberInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetGroupMemberInfoResp.Unmarshal(m, b) return xxx_messageInfo_SetGroupMemberInfoResp.Unmarshal(m, b)
@ -4647,151 +4655,150 @@ var _Group_serviceDesc = grpc.ServiceDesc{
Metadata: "group/group.proto", Metadata: "group/group.proto",
} }
func init() { proto.RegisterFile("group/group.proto", fileDescriptor_group_e5947a1008c7a757) } func init() { proto.RegisterFile("group/group.proto", fileDescriptor_group_8c320ccb494991ed) }
var fileDescriptor_group_e5947a1008c7a757 = []byte{ var fileDescriptor_group_8c320ccb494991ed = []byte{
// 2274 bytes of a gzipped FileDescriptorProto // 2272 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4f, 0x6f, 0x1c, 0x4b, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4f, 0x6f, 0x1c, 0x4b,
0x11, 0xd7, 0x78, 0xbd, 0xb6, 0xb7, 0x6c, 0x67, 0xed, 0x76, 0xd6, 0x5e, 0x4f, 0xfc, 0xf2, 0x9c, 0x11, 0xd7, 0xd8, 0x5e, 0xdb, 0x5b, 0xb6, 0xb3, 0x76, 0x3b, 0x6b, 0xaf, 0x27, 0x7e, 0x79, 0x4e,
0x7e, 0xe1, 0x11, 0xc1, 0xc3, 0x16, 0x8e, 0x14, 0x01, 0x0f, 0x11, 0xe2, 0x3f, 0x89, 0x37, 0x89, 0xbf, 0xf0, 0x88, 0xe0, 0x61, 0x0b, 0x47, 0x8a, 0x80, 0x87, 0x08, 0xf1, 0x9f, 0xc4, 0x9b, 0xc4,
0x6d, 0x32, 0xce, 0xe3, 0x10, 0x09, 0x85, 0xcd, 0x4e, 0x7b, 0xb5, 0x78, 0x77, 0x66, 0x3c, 0x3d, 0x36, 0x19, 0xe7, 0x71, 0x88, 0x84, 0xc2, 0x64, 0xa7, 0xbd, 0x5a, 0xbc, 0x3b, 0x33, 0x9e, 0x9e,
0xeb, 0x04, 0x2e, 0x4f, 0x5c, 0x9e, 0xf4, 0x80, 0x03, 0x08, 0x89, 0x13, 0x12, 0xe4, 0x04, 0x07, 0x75, 0x02, 0x97, 0x27, 0x2e, 0x4f, 0x7a, 0xc0, 0x01, 0x84, 0xc4, 0x09, 0x09, 0x72, 0x82, 0x03,
0x0e, 0x1c, 0xe0, 0x8c, 0xb8, 0x20, 0xbe, 0x02, 0x9f, 0x82, 0xaf, 0x80, 0xa6, 0xbb, 0xa7, 0xa7, 0x07, 0x0e, 0x70, 0x46, 0xdc, 0xf8, 0x0a, 0x5c, 0xf9, 0x02, 0x7c, 0x05, 0x34, 0xdd, 0x3d, 0x3d,
0x67, 0xba, 0x67, 0xbc, 0x59, 0x27, 0xe4, 0xb2, 0x52, 0x57, 0x57, 0x4f, 0xff, 0xaa, 0xba, 0xaa, 0x3d, 0x33, 0x3d, 0xe3, 0xcd, 0x6c, 0x42, 0x2e, 0x2b, 0x75, 0x75, 0xf5, 0xf4, 0xaf, 0xaa, 0xab,
0xba, 0xaa, 0x7a, 0x61, 0xb1, 0x1b, 0xfa, 0xc3, 0x60, 0x93, 0xfd, 0x6e, 0x04, 0xa1, 0x1f, 0xf9, 0xaa, 0xab, 0xaa, 0x17, 0x96, 0xba, 0x81, 0x37, 0xf4, 0xb7, 0xd8, 0xef, 0xa6, 0x1f, 0x78, 0xa1,
0xa8, 0xca, 0x06, 0xf6, 0x8d, 0xa3, 0x80, 0x78, 0xcf, 0x5b, 0x07, 0x9b, 0xc1, 0x69, 0x77, 0x93, 0x87, 0x6a, 0x6c, 0x60, 0xde, 0x38, 0xf6, 0x89, 0xfb, 0xbc, 0x7d, 0xb8, 0xe5, 0x9f, 0x75, 0xb7,
0xcd, 0x6c, 0x52, 0xf7, 0xf4, 0xf9, 0x4b, 0xba, 0xf9, 0x92, 0x72, 0x4e, 0xfb, 0xab, 0xc5, 0x2c, 0xd8, 0xcc, 0x16, 0x75, 0xce, 0x9e, 0xbf, 0xa4, 0x5b, 0x2f, 0x29, 0xe7, 0x34, 0xbf, 0x5a, 0xcc,
0x61, 0x3b, 0x08, 0x48, 0x28, 0x18, 0xf1, 0xf7, 0x00, 0x76, 0xfc, 0xc1, 0xc0, 0xf7, 0x1c, 0x42, 0x12, 0xd8, 0xbe, 0x4f, 0x02, 0xc1, 0x88, 0xbf, 0x07, 0xb0, 0xeb, 0x0d, 0x06, 0x9e, 0x6b, 0x11,
0x03, 0xd4, 0x84, 0xe9, 0xbd, 0x30, 0xdc, 0xf1, 0x5d, 0xd2, 0xb4, 0xd6, 0xad, 0x5b, 0x55, 0x27, 0xea, 0xa3, 0x16, 0xcc, 0xec, 0x07, 0xc1, 0xae, 0xe7, 0x90, 0x96, 0xb1, 0x61, 0xdc, 0xaa, 0x59,
0x19, 0xa2, 0x65, 0x98, 0xda, 0x0b, 0xc3, 0x03, 0xda, 0x6d, 0x4e, 0xac, 0x5b, 0xb7, 0x6a, 0x8e, 0xf1, 0x10, 0xad, 0xc0, 0xf4, 0x7e, 0x10, 0x1c, 0xd2, 0x6e, 0x6b, 0x62, 0xc3, 0xb8, 0x55, 0xb7,
0x18, 0xe1, 0x87, 0x80, 0x1e, 0xc4, 0xa0, 0xee, 0xb9, 0xee, 0x01, 0x19, 0xbc, 0x20, 0x61, 0xcb, 0xc4, 0x08, 0x3f, 0x04, 0xf4, 0x20, 0x02, 0x75, 0xcf, 0x71, 0x0e, 0xc9, 0xe0, 0x05, 0x09, 0xda,
0x3b, 0xf1, 0x63, 0xee, 0xcf, 0x28, 0x09, 0x5b, 0xbb, 0xec, 0x33, 0x35, 0x47, 0x8c, 0xd0, 0x1a, 0xee, 0xa9, 0x17, 0x71, 0x7f, 0x46, 0x49, 0xd0, 0xde, 0x63, 0x9f, 0xa9, 0x5b, 0x62, 0x84, 0xd6,
0xd4, 0x1c, 0xbf, 0x4f, 0x1e, 0x93, 0x73, 0xd2, 0x67, 0x1f, 0xaa, 0x3a, 0x29, 0x01, 0xff, 0xd7, 0xa1, 0x6e, 0x79, 0x7d, 0xf2, 0x98, 0x5c, 0x90, 0x3e, 0xfb, 0x50, 0xcd, 0x4a, 0x08, 0xf8, 0xbf,
0x82, 0x2b, 0x3b, 0x21, 0x69, 0x47, 0x84, 0x7d, 0xd2, 0x21, 0x67, 0xe8, 0x1e, 0x5c, 0x69, 0x79, 0x06, 0x5c, 0xd9, 0x0d, 0x88, 0x1d, 0x12, 0xf6, 0x49, 0x8b, 0x9c, 0xa3, 0x7b, 0x70, 0xa5, 0xed,
0xbd, 0x88, 0x7f, 0xfa, 0x71, 0x8f, 0x46, 0x4d, 0x6b, 0xbd, 0x72, 0x6b, 0x76, 0x6b, 0x75, 0x83, 0xf6, 0x42, 0xfe, 0xe9, 0xc7, 0x3d, 0x1a, 0xb6, 0x8c, 0x8d, 0xc9, 0x5b, 0x73, 0xdb, 0x6b, 0x9b,
0xeb, 0x45, 0xdf, 0xdb, 0xc9, 0x2d, 0x40, 0xdf, 0x81, 0x1a, 0xe3, 0x8a, 0x27, 0xd9, 0x9e, 0xb3, 0x5c, 0x2f, 0xf9, 0xbd, 0xad, 0xcc, 0x02, 0xf4, 0x1d, 0xa8, 0x33, 0xae, 0x68, 0x92, 0xed, 0x39,
0x5b, 0x6b, 0x1b, 0x94, 0x84, 0xe7, 0x24, 0x7c, 0xde, 0x0e, 0x7a, 0xcf, 0x83, 0x76, 0xd8, 0x1e, 0xb7, 0xbd, 0xbe, 0x49, 0x49, 0x70, 0x41, 0x82, 0xe7, 0xb6, 0xdf, 0x7b, 0xee, 0xdb, 0x81, 0x3d,
0xd0, 0x0d, 0xc9, 0xe3, 0xa4, 0xec, 0x68, 0x1d, 0x66, 0x8f, 0x02, 0x12, 0xb6, 0xa3, 0x9e, 0xef, 0xa0, 0x9b, 0x92, 0xc7, 0x4a, 0xd8, 0xd1, 0x06, 0xcc, 0x1d, 0xfb, 0x24, 0xb0, 0xc3, 0x9e, 0xe7,
0xb5, 0x76, 0x9b, 0x15, 0x26, 0x8c, 0x4a, 0x42, 0x36, 0xcc, 0x1c, 0x05, 0x42, 0xd6, 0x49, 0x36, 0xb6, 0xf7, 0x5a, 0x93, 0x4c, 0x18, 0x95, 0x84, 0x4c, 0x98, 0x3d, 0xf6, 0x85, 0xac, 0x53, 0x6c,
0x2d, 0xc7, 0x6c, 0xf5, 0x4b, 0x8f, 0x84, 0x62, 0xba, 0x2a, 0x56, 0xa7, 0x24, 0xfc, 0x39, 0xd4, 0x5a, 0x8e, 0xd9, 0xea, 0x97, 0x2e, 0x09, 0xc4, 0x74, 0x4d, 0xac, 0x4e, 0x48, 0xf8, 0x73, 0x68,
0x33, 0x02, 0x8f, 0x73, 0x04, 0x59, 0x01, 0x2b, 0x6f, 0x24, 0x20, 0x0e, 0x61, 0xe1, 0x01, 0x89, 0xa4, 0x04, 0xae, 0x72, 0x04, 0x69, 0x01, 0x27, 0xdf, 0x48, 0x40, 0x1c, 0xc0, 0xe2, 0x03, 0x12,
0xd8, 0x98, 0xb2, 0x39, 0x72, 0x16, 0xc3, 0xe6, 0x0c, 0xbb, 0x52, 0xe1, 0x35, 0x47, 0x25, 0xe5, 0xb2, 0x31, 0x65, 0x73, 0xe4, 0x3c, 0x82, 0xcd, 0x19, 0xf6, 0xa4, 0xc2, 0xeb, 0x96, 0x4a, 0xca,
0xd5, 0x32, 0x51, 0xae, 0x96, 0x4a, 0x56, 0x2d, 0xf8, 0x4b, 0x0b, 0x16, 0x73, 0x9b, 0x8e, 0x25, 0xaa, 0x65, 0xa2, 0x5c, 0x2d, 0x93, 0x69, 0xb5, 0xe0, 0x2f, 0x0d, 0x58, 0xca, 0x6c, 0x5a, 0x49,
0xf7, 0x36, 0xcc, 0x4b, 0x41, 0x18, 0xd2, 0x0a, 0x33, 0x8d, 0x72, 0xd9, 0xb3, 0x4b, 0xf0, 0x2f, 0xee, 0x1d, 0x58, 0x90, 0x82, 0x30, 0xa4, 0x93, 0xcc, 0x34, 0xca, 0x65, 0x4f, 0x2f, 0xc1, 0xbf,
0x2d, 0xa8, 0x1f, 0x0b, 0x2c, 0x89, 0xfc, 0x19, 0x7d, 0x5a, 0x6f, 0x66, 0x30, 0xaa, 0xdc, 0x13, 0x34, 0xa0, 0x71, 0x22, 0xb0, 0xc4, 0xf2, 0xa7, 0xf4, 0x69, 0xbc, 0x99, 0xc1, 0xa8, 0x72, 0x4f,
0x06, 0x73, 0x28, 0x35, 0x26, 0xbc, 0x07, 0x0b, 0x59, 0x30, 0x34, 0x40, 0xdf, 0x54, 0x1d, 0x54, 0x68, 0xcc, 0xa1, 0xd4, 0x98, 0xf0, 0x3e, 0x2c, 0xa6, 0xc1, 0x50, 0x1f, 0x7d, 0x53, 0x75, 0x50,
0xc0, 0x59, 0x14, 0xd6, 0x9f, 0x4e, 0x38, 0x0a, 0x13, 0xfe, 0x19, 0xd8, 0x89, 0x7e, 0xef, 0x05, 0x01, 0x67, 0x49, 0x58, 0x7f, 0x32, 0x61, 0x29, 0x4c, 0xf8, 0x67, 0x60, 0xc6, 0xfa, 0xbd, 0xe7,
0x41, 0xbf, 0xd7, 0x61, 0xdf, 0x8f, 0xe5, 0x8d, 0xc5, 0x53, 0x21, 0x5a, 0xe5, 0x10, 0x0d, 0x07, 0xfb, 0xfd, 0x5e, 0x87, 0x7d, 0x3f, 0x92, 0x37, 0x12, 0x4f, 0x85, 0x68, 0x94, 0x43, 0xd4, 0x1c,
0x7b, 0x1d, 0xe0, 0x7e, 0xe8, 0x0f, 0x32, 0x47, 0xab, 0x50, 0xf0, 0xef, 0x2d, 0xb8, 0x56, 0xb8, 0xec, 0x75, 0x80, 0xfb, 0x81, 0x37, 0x48, 0x1d, 0xad, 0x42, 0xc1, 0xbf, 0x37, 0xe0, 0x5a, 0xe1,
0xf9, 0x58, 0xc7, 0xfc, 0x08, 0x16, 0x92, 0x70, 0x30, 0x24, 0x34, 0x52, 0x4e, 0xfa, 0xc3, 0xa2, 0xe6, 0x95, 0x8e, 0xf9, 0x11, 0x2c, 0xc6, 0xe1, 0x60, 0x48, 0x68, 0xa8, 0x9c, 0xf4, 0x87, 0x45,
0x53, 0x11, 0xac, 0x8e, 0xb6, 0x10, 0x47, 0xb0, 0xf6, 0x80, 0x44, 0x31, 0x56, 0x87, 0x9c, 0x19, 0xa7, 0x22, 0x58, 0xad, 0xdc, 0x42, 0x1c, 0xc2, 0xfa, 0x03, 0x12, 0x46, 0x58, 0x2d, 0x72, 0xae,
0x94, 0x53, 0x14, 0xb8, 0x2e, 0x77, 0xae, 0x7f, 0xb0, 0xe0, 0x83, 0x92, 0x6d, 0xc7, 0x3a, 0x65, 0x51, 0x4e, 0x51, 0xe0, 0x1a, 0xef, 0x5c, 0xff, 0x60, 0xc0, 0x07, 0x25, 0xdb, 0x56, 0x3a, 0x65,
0xa3, 0x5e, 0x26, 0xc6, 0xd5, 0xcb, 0x3f, 0x2c, 0x68, 0x3c, 0x0d, 0xdb, 0x1e, 0x3d, 0x21, 0x21, 0xad, 0x5e, 0x26, 0xaa, 0xea, 0xe5, 0x1f, 0x06, 0x34, 0x9f, 0x06, 0xb6, 0x4b, 0x4f, 0x49, 0xc0,
0x9b, 0x64, 0x51, 0x2a, 0xd6, 0x48, 0x13, 0xa6, 0x85, 0xeb, 0x0b, 0x95, 0x24, 0x43, 0xf4, 0x31, 0x26, 0x59, 0x94, 0x8a, 0x34, 0xd2, 0x82, 0x19, 0xe1, 0xfa, 0x42, 0x25, 0xf1, 0x10, 0x7d, 0x0c,
0x5c, 0x39, 0xea, 0xbb, 0x6a, 0x84, 0xe3, 0x9a, 0xc9, 0x51, 0x63, 0xbe, 0x43, 0xf2, 0x52, 0xe5, 0x57, 0x8e, 0xfb, 0x8e, 0x1a, 0xe1, 0xb8, 0x66, 0x32, 0xd4, 0x88, 0xef, 0x88, 0xbc, 0x54, 0xf9,
0xe3, 0x2a, 0xca, 0x51, 0xf3, 0x7a, 0x9c, 0x2c, 0x8f, 0x2a, 0xd5, 0x5c, 0x54, 0x79, 0x04, 0xcb, 0xb8, 0x8a, 0x32, 0xd4, 0xac, 0x1e, 0xa7, 0xca, 0xa3, 0x4a, 0x2d, 0x13, 0x55, 0x1e, 0xc1, 0x8a,
0x26, 0x01, 0xc6, 0xf3, 0xa0, 0x2f, 0x2c, 0x98, 0x7b, 0xe8, 0xf7, 0x3c, 0x79, 0x0f, 0x15, 0x6b, 0x4e, 0x80, 0x6a, 0x1e, 0xf4, 0x85, 0x01, 0xf3, 0x0f, 0xbd, 0x9e, 0x2b, 0xef, 0xa1, 0x62, 0x2d,
0xe1, 0x3a, 0x80, 0x43, 0xce, 0x0e, 0x08, 0xa5, 0xed, 0x2e, 0x11, 0x1a, 0x50, 0x28, 0x65, 0x91, 0x5c, 0x07, 0xb0, 0xc8, 0xf9, 0x21, 0xa1, 0xd4, 0xee, 0x12, 0xa1, 0x01, 0x85, 0x52, 0x16, 0x09,
0xf0, 0x62, 0x89, 0xf1, 0x36, 0xcc, 0x2b, 0x38, 0xc6, 0x13, 0xe6, 0x3f, 0xb1, 0x4b, 0xe6, 0xfc, 0x2f, 0x97, 0x18, 0xef, 0xc0, 0x82, 0x82, 0xa3, 0x9a, 0x30, 0xff, 0x8e, 0x5c, 0x32, 0xe3, 0x8f,
0x31, 0x9e, 0xf0, 0x3d, 0x4a, 0x44, 0xbc, 0x57, 0x51, 0x58, 0xe5, 0x7a, 0xcf, 0x5b, 0xbf, 0xa2, 0xd1, 0x84, 0xe7, 0x52, 0x22, 0xe2, 0xbd, 0x8a, 0xc2, 0x28, 0xd7, 0x7b, 0xd6, 0xfa, 0x15, 0xcd,
0x99, 0x8a, 0xa6, 0x19, 0x25, 0x54, 0x4c, 0xe6, 0x43, 0x45, 0x3c, 0xbf, 0xdf, 0xf6, 0xdc, 0x3e, 0x4c, 0xe6, 0x34, 0xa3, 0x84, 0x8a, 0xa9, 0x6c, 0xa8, 0x88, 0xe6, 0x0f, 0x6c, 0xd7, 0xe9, 0x13,
0x71, 0x63, 0xa7, 0xe7, 0xe7, 0xa9, 0x50, 0x10, 0x86, 0x39, 0x3e, 0x72, 0x08, 0x1d, 0xf6, 0xa3, 0x27, 0x72, 0x7a, 0x7e, 0x9e, 0x0a, 0x05, 0x61, 0x98, 0xe7, 0x23, 0x8b, 0xd0, 0x61, 0x3f, 0x6c,
0xe6, 0x14, 0x8b, 0x17, 0x19, 0x1a, 0x7e, 0x02, 0x6b, 0xc5, 0xa2, 0x8d, 0xa7, 0xae, 0x13, 0x98, 0x4d, 0xb3, 0x78, 0x91, 0xa2, 0xe1, 0x27, 0xb0, 0x5e, 0x2c, 0x5a, 0x35, 0x75, 0x9d, 0xc2, 0xfc,
0x7b, 0x32, 0xec, 0x45, 0x23, 0x1c, 0xfd, 0xe5, 0xae, 0xc1, 0x6d, 0x98, 0x57, 0xf6, 0x19, 0x0f, 0x93, 0x61, 0x2f, 0x1c, 0xe1, 0xe8, 0xc7, 0xbb, 0x06, 0x77, 0x60, 0x41, 0xd9, 0xa7, 0x1a, 0xd6,
0xeb, 0x6b, 0x0b, 0x1a, 0x49, 0xb4, 0x4d, 0x53, 0x9e, 0x72, 0xd4, 0x97, 0x0a, 0x65, 0x71, 0x80, 0xd7, 0x06, 0x34, 0xe3, 0x68, 0x9b, 0xa4, 0x3c, 0xe5, 0xa8, 0xc7, 0x0a, 0x65, 0x51, 0x80, 0xbc,
0xbc, 0xdf, 0xeb, 0x47, 0x24, 0x64, 0x07, 0x5a, 0x75, 0xc4, 0x28, 0xde, 0xef, 0x90, 0xbc, 0x8a, 0xdf, 0xeb, 0x87, 0x24, 0x60, 0x07, 0x5a, 0xb3, 0xc4, 0x28, 0xda, 0xef, 0x88, 0xbc, 0x0a, 0x4f,
0x8e, 0xc9, 0x19, 0x3b, 0xc9, 0xaa, 0x93, 0x0c, 0xf1, 0x5f, 0x2c, 0x58, 0x36, 0x61, 0x1c, 0xeb, 0xc8, 0x39, 0x3b, 0xc9, 0x9a, 0x15, 0x0f, 0xf1, 0x5f, 0x0c, 0x58, 0xd1, 0x61, 0xac, 0x74, 0x19,
0x32, 0xb8, 0x0f, 0x30, 0x48, 0x73, 0x41, 0x7e, 0x0d, 0x7c, 0x5c, 0x14, 0xee, 0xf8, 0x6e, 0xf7, 0xdc, 0x07, 0x18, 0x24, 0xb9, 0x20, 0xbf, 0x06, 0x3e, 0x2e, 0x0a, 0x77, 0x7c, 0xb7, 0xfb, 0xc3,
0x87, 0xfd, 0x3e, 0xbb, 0x4d, 0x95, 0x95, 0xf1, 0xce, 0x9e, 0x80, 0xcb, 0xe5, 0x48, 0x86, 0xf8, 0x7e, 0x9f, 0xdd, 0xa6, 0xca, 0xca, 0x68, 0x67, 0x57, 0xc0, 0xe5, 0x72, 0xc4, 0x43, 0xfc, 0xeb,
0xd7, 0x1a, 0x5c, 0x99, 0x18, 0x95, 0x06, 0x01, 0x05, 0xd6, 0x04, 0xcb, 0x98, 0xd4, 0xed, 0x2e, 0x1c, 0x5c, 0x99, 0x18, 0x95, 0x06, 0x01, 0x05, 0xd6, 0x04, 0xcb, 0x98, 0xd4, 0xed, 0xc6, 0x0b,
0x17, 0x04, 0x7e, 0x6b, 0xc1, 0x8a, 0x11, 0xd2, 0xfb, 0x54, 0x21, 0xfe, 0xab, 0x05, 0xe8, 0x51, 0x02, 0xbf, 0x35, 0x60, 0x55, 0x0b, 0xe9, 0x7d, 0xaa, 0x10, 0xff, 0xd5, 0x00, 0xf4, 0xa8, 0xd7,
0xaf, 0x73, 0xaa, 0xf0, 0x95, 0x2b, 0xe9, 0x6b, 0xb0, 0x10, 0xf3, 0x13, 0x97, 0x0b, 0xae, 0xa8, 0x39, 0x53, 0xf8, 0xca, 0x95, 0xf4, 0x35, 0x58, 0x8c, 0xf8, 0x89, 0xc3, 0x05, 0x57, 0x54, 0x95,
0x4a, 0xa3, 0xc7, 0xe0, 0x1d, 0xd2, 0xa6, 0xbe, 0x27, 0xd4, 0x25, 0x46, 0x79, 0x65, 0x55, 0xcb, 0xa3, 0x47, 0xe0, 0x2d, 0x62, 0x53, 0xcf, 0x15, 0xea, 0x12, 0xa3, 0xac, 0xb2, 0x6a, 0xe5, 0x2e,
0x5d, 0x6e, 0x2a, 0xe7, 0x72, 0x9f, 0x42, 0xad, 0xe5, 0x6e, 0xf1, 0xd0, 0x51, 0x78, 0xd5, 0xb3, 0x37, 0x9d, 0x71, 0xb9, 0x4f, 0xa1, 0xde, 0x76, 0xb6, 0x79, 0xe8, 0x28, 0xbc, 0xea, 0xd9, 0xd6,
0xad, 0x59, 0xc0, 0xe1, 0x05, 0x8a, 0x18, 0xe1, 0xcf, 0x61, 0x49, 0x13, 0x77, 0xac, 0x03, 0xb8, 0x2c, 0xe0, 0xf0, 0x02, 0x45, 0x8c, 0xf0, 0xe7, 0xb0, 0x9c, 0x13, 0xb7, 0xd2, 0x01, 0xdc, 0x81,
0x03, 0xf3, 0x12, 0x85, 0x72, 0x06, 0x0b, 0xc2, 0xd5, 0xe5, 0x9c, 0x93, 0x65, 0xc3, 0x43, 0xe6, 0x05, 0x89, 0x42, 0x39, 0x83, 0x45, 0xe1, 0xea, 0x72, 0xce, 0x4a, 0xb3, 0xe1, 0x21, 0xf3, 0xf5,
0xeb, 0xf1, 0x75, 0x40, 0x5c, 0x86, 0x22, 0xf1, 0xf5, 0x6c, 0xa0, 0xb5, 0xb4, 0x40, 0xbb, 0x0e, 0xe8, 0x3a, 0x20, 0x0e, 0x43, 0x11, 0xfb, 0x7a, 0x3a, 0xd0, 0x1a, 0xb9, 0x40, 0xbb, 0x01, 0x73,
0xb3, 0xbe, 0x1e, 0xa7, 0xfc, 0x11, 0xe3, 0xd4, 0x17, 0xdc, 0x21, 0xb4, 0x7d, 0x2f, 0x55, 0xab, 0x5e, 0x3e, 0x4e, 0x79, 0x23, 0xc6, 0xa9, 0x2f, 0xb8, 0x43, 0xe4, 0xf6, 0x1d, 0xab, 0x56, 0x19,
0x8c, 0x9c, 0xaf, 0xa7, 0xec, 0xf8, 0x6f, 0x16, 0x5c, 0x6d, 0x79, 0xe7, 0xbd, 0x88, 0xc4, 0xc8, 0x39, 0x5f, 0x4f, 0xd8, 0xf1, 0xdf, 0x0c, 0xb8, 0xda, 0x76, 0x2f, 0x7a, 0x21, 0x89, 0x90, 0x3d,
0x9e, 0xfa, 0x32, 0x42, 0x5f, 0x1c, 0x87, 0x8b, 0x2f, 0xa9, 0xd4, 0xd0, 0x26, 0x33, 0x86, 0xf6, 0xf5, 0x64, 0x84, 0xbe, 0x3c, 0x0e, 0x17, 0x5f, 0x52, 0x89, 0xa1, 0x4d, 0xa5, 0x0c, 0xed, 0x13,
0x09, 0x2c, 0xf2, 0xbd, 0x54, 0x6b, 0xad, 0x32, 0x6b, 0xd5, 0x27, 0x4a, 0x8d, 0xee, 0xe7, 0x16, 0x58, 0xe2, 0x7b, 0xa9, 0xd6, 0x5a, 0x63, 0xd6, 0x9a, 0x9f, 0x28, 0x35, 0xba, 0x9f, 0x1b, 0xd0,
0x34, 0x0c, 0xb0, 0xff, 0xaf, 0xa6, 0xe3, 0xc1, 0x55, 0x99, 0x94, 0xf7, 0xfb, 0xa3, 0x38, 0xeb, 0xd4, 0xc0, 0xfe, 0xbf, 0x9a, 0x8e, 0x0b, 0x57, 0x65, 0x52, 0xde, 0xef, 0x8f, 0xe2, 0xac, 0xe3,
0xe5, 0x12, 0xde, 0xdf, 0x28, 0xf7, 0x92, 0xb2, 0xe1, 0x7b, 0x8d, 0x57, 0xbf, 0xb3, 0x60, 0x66, 0x25, 0xbc, 0xbf, 0x51, 0xee, 0x25, 0x65, 0xc3, 0xf7, 0x1a, 0xaf, 0x7e, 0x67, 0xc0, 0xec, 0xee,
0xe7, 0xe0, 0x98, 0xb1, 0x5d, 0xaa, 0xc6, 0xbb, 0x05, 0x75, 0xbe, 0x57, 0x9b, 0x46, 0x24, 0x3c, 0xe1, 0x09, 0x63, 0x1b, 0xab, 0xc6, 0xbb, 0x05, 0x0d, 0xbe, 0x97, 0x4d, 0x43, 0x12, 0x1c, 0xd9,
0x6c, 0x0f, 0x92, 0xb4, 0x2f, 0x4f, 0x46, 0x37, 0x45, 0x85, 0xca, 0x49, 0x2d, 0x57, 0xa8, 0x2a, 0x83, 0x38, 0xed, 0xcb, 0x92, 0xd1, 0x4d, 0x51, 0xa1, 0x72, 0x52, 0xdb, 0x11, 0xaa, 0x4a, 0x13,
0x4b, 0x8c, 0xc3, 0xfb, 0x6c, 0xa2, 0xac, 0xf8, 0x50, 0xd6, 0x04, 0x36, 0xf6, 0x65, 0x7e, 0x2c, 0xa3, 0xf0, 0x3e, 0x17, 0x2b, 0x2b, 0x3a, 0x94, 0x75, 0x81, 0x8d, 0x7d, 0x99, 0x1f, 0x4b, 0x42,
0x29, 0x01, 0xed, 0x02, 0xfc, 0xa0, 0xdd, 0xed, 0x79, 0x4c, 0xd5, 0xa2, 0x9f, 0x71, 0xd3, 0x00, 0x40, 0x7b, 0x00, 0x3f, 0xb0, 0xbb, 0x3d, 0x97, 0xa9, 0x5a, 0xf4, 0x33, 0x6e, 0x6a, 0xa0, 0x8b,
0x5d, 0x64, 0xf7, 0x29, 0xaf, 0xa3, 0xac, 0x1b, 0xe1, 0x08, 0x5f, 0x5b, 0x30, 0x97, 0xa2, 0xa2, 0xec, 0x3e, 0xe1, 0xb5, 0x94, 0x75, 0x23, 0x1c, 0xe1, 0x6b, 0x03, 0xe6, 0x13, 0x54, 0xd4, 0x47,
0x01, 0xfa, 0x06, 0xd4, 0x12, 0xf5, 0x51, 0xd1, 0x85, 0xa9, 0x27, 0xd9, 0x89, 0xa0, 0x3b, 0x29, 0xdf, 0x80, 0x7a, 0xac, 0x3e, 0x2a, 0xba, 0x30, 0x8d, 0x38, 0x3b, 0x11, 0x74, 0x2b, 0xe1, 0x78,
0xc7, 0x5b, 0xc2, 0x29, 0x75, 0x31, 0x1c, 0x50, 0x86, 0xb2, 0xea, 0xa4, 0x04, 0x7c, 0x9e, 0x42, 0x4b, 0x38, 0xa5, 0x2e, 0x86, 0x03, 0xca, 0x50, 0xd6, 0xac, 0x84, 0x80, 0x2f, 0x12, 0x88, 0x34,
0xa4, 0xb1, 0xe6, 0xb2, 0x7b, 0x5a, 0x6f, 0x47, 0x37, 0x7a, 0x38, 0xc1, 0x7f, 0xb4, 0x60, 0x5e, 0xd2, 0x5c, 0x7a, 0x4f, 0xe3, 0xed, 0xe8, 0x26, 0x1f, 0x4e, 0xf0, 0x1f, 0x0d, 0x58, 0x50, 0x36,
0xd9, 0xf8, 0x7d, 0x29, 0xc7, 0x86, 0x99, 0x44, 0x17, 0x42, 0x37, 0x72, 0x8c, 0x8f, 0xd2, 0x1e, 0x7e, 0x5f, 0xca, 0x31, 0x61, 0x36, 0xd6, 0x85, 0xd0, 0x8d, 0x1c, 0xe3, 0xe3, 0xa4, 0xc7, 0xa2,
0x8b, 0xc1, 0xdd, 0xdd, 0xac, 0xbb, 0xbb, 0x23, 0xc8, 0x7c, 0x0a, 0x0d, 0x3e, 0xe4, 0xbd, 0xaa, 0x71, 0x77, 0x27, 0xed, 0xee, 0xce, 0x08, 0x32, 0x9f, 0x41, 0x93, 0x0f, 0x79, 0xaf, 0xea, 0x24,
0xe3, 0xa8, 0x1d, 0x0d, 0x69, 0xf9, 0x47, 0x97, 0x61, 0x8a, 0xb3, 0x25, 0x37, 0x29, 0x1f, 0x8d, 0xb4, 0xc3, 0x21, 0x2d, 0xff, 0xe8, 0x0a, 0x4c, 0x73, 0xb6, 0xf8, 0x26, 0xe5, 0xa3, 0x11, 0x8c,
0x60, 0x7c, 0x4d, 0x58, 0x36, 0x6d, 0xc6, 0x2b, 0x33, 0x24, 0xa6, 0x58, 0x39, 0xed, 0xf7, 0xc9, 0xaf, 0x05, 0x2b, 0xba, 0xcd, 0x78, 0x65, 0x86, 0xc4, 0x14, 0x2b, 0xa7, 0xbd, 0x3e, 0xb9, 0x14,
0x85, 0x20, 0x58, 0xd8, 0x72, 0x93, 0xb0, 0xc2, 0x47, 0xd9, 0x56, 0x64, 0x25, 0xd7, 0x8a, 0x1c, 0x04, 0x0b, 0x5b, 0x4e, 0x1c, 0x56, 0xf8, 0x28, 0xdd, 0x8a, 0x9c, 0xcc, 0xb4, 0x22, 0x47, 0x48,
0x21, 0x29, 0x6b, 0xc0, 0x92, 0x86, 0x83, 0x06, 0xf8, 0x31, 0x5c, 0xd9, 0x25, 0x7d, 0xa2, 0xb4, 0xca, 0x9a, 0xb0, 0x9c, 0xc3, 0x41, 0x7d, 0xfc, 0x18, 0xae, 0xec, 0x91, 0x3e, 0x51, 0x5a, 0x98,
0x30, 0x2f, 0xa3, 0xf4, 0x45, 0xa8, 0x67, 0xbe, 0x46, 0x03, 0x7c, 0x00, 0xf5, 0xe4, 0x60, 0xb7, 0xe3, 0x28, 0x7d, 0x09, 0x1a, 0xa9, 0xaf, 0x51, 0x1f, 0x1f, 0x42, 0x23, 0x3e, 0xd8, 0x9d, 0x9f,
0x7f, 0xda, 0x72, 0x2f, 0xbb, 0xc3, 0xdd, 0xb4, 0x01, 0xc8, 0x3f, 0x47, 0x03, 0xf4, 0xf5, 0x34, 0xb6, 0x9d, 0x71, 0x77, 0xb8, 0x9b, 0x34, 0x00, 0xf9, 0xe7, 0xa8, 0x8f, 0xbe, 0x9e, 0x04, 0x4a,
0x50, 0x0a, 0x27, 0xd2, 0x6c, 0x59, 0x32, 0xe0, 0xbf, 0x6b, 0x25, 0x08, 0xdd, 0x39, 0x38, 0x2e, 0xe1, 0x44, 0x39, 0x5b, 0x96, 0x0c, 0xf8, 0xef, 0xb9, 0x12, 0x84, 0xee, 0x1e, 0x9e, 0x94, 0xc3,
0x87, 0x65, 0xc3, 0x4c, 0xac, 0x34, 0x25, 0x74, 0xca, 0x71, 0xce, 0x35, 0x2a, 0x6f, 0xc7, 0x87, 0x32, 0x61, 0x36, 0x52, 0x9a, 0x12, 0x3a, 0xe5, 0x38, 0xe3, 0x1a, 0x93, 0x6f, 0xc7, 0x87, 0x35,
0x0d, 0xe7, 0xf7, 0x4f, 0x3d, 0xcf, 0x67, 0xb8, 0x69, 0x80, 0xbe, 0x0f, 0xd3, 0xfc, 0xde, 0x48, 0xe7, 0xf7, 0xcf, 0x7c, 0x9e, 0xcf, 0x70, 0x53, 0x1f, 0x7d, 0x1f, 0x66, 0xf8, 0xbd, 0x11, 0xbb,
0x5c, 0x79, 0xd4, 0xeb, 0x26, 0x59, 0x86, 0xf6, 0x0c, 0xfe, 0xfd, 0x15, 0xa3, 0x10, 0xbc, 0x56, 0xf2, 0xa8, 0xd7, 0x4d, 0xbc, 0x0c, 0xed, 0x6b, 0xfc, 0xfb, 0x2b, 0x5a, 0x21, 0x78, 0xad, 0x5a,
0x2d, 0x90, 0xe2, 0x3a, 0x00, 0xdf, 0x41, 0x09, 0x7f, 0x0a, 0x05, 0xff, 0xca, 0x82, 0xa6, 0x43, 0x20, 0xc5, 0x75, 0x00, 0xbe, 0x83, 0x12, 0xfe, 0x14, 0x0a, 0xfe, 0x95, 0x01, 0x2d, 0x8b, 0x0c,
0x06, 0xfe, 0x39, 0x79, 0x23, 0xf5, 0x37, 0x61, 0x9a, 0x3b, 0x01, 0x15, 0xf9, 0x77, 0x32, 0x7c, 0xbc, 0x0b, 0xf2, 0x46, 0xea, 0x6f, 0xc1, 0x0c, 0x77, 0x02, 0x2a, 0xf2, 0xef, 0x78, 0xf8, 0x46,
0xa3, 0x7e, 0xb7, 0x9b, 0xeb, 0x77, 0xbb, 0xf8, 0x00, 0x56, 0x0b, 0xd0, 0xf0, 0x8b, 0x9f, 0x0e, 0xfd, 0x6e, 0x27, 0xd3, 0xef, 0x76, 0xf0, 0x21, 0xac, 0x15, 0xa0, 0xe1, 0x17, 0x3f, 0x1d, 0x76,
0x3b, 0x1d, 0x42, 0xa9, 0xe8, 0x28, 0x27, 0xc3, 0xd8, 0x43, 0x4f, 0xda, 0xbd, 0x3e, 0x71, 0x05, 0x3a, 0x84, 0x52, 0xd1, 0x51, 0x8e, 0x87, 0x91, 0x87, 0x9e, 0xda, 0xbd, 0x3e, 0x71, 0x04, 0x1a,
0x1a, 0x31, 0xc2, 0x5f, 0x5a, 0xd0, 0xb8, 0xe7, 0xba, 0xef, 0x42, 0x34, 0x57, 0x17, 0xcd, 0x2d, 0x31, 0xc2, 0x5f, 0x1a, 0xd0, 0xbc, 0xe7, 0x38, 0xef, 0x42, 0x34, 0x27, 0x2f, 0x9a, 0x53, 0x2a,
0x15, 0xed, 0x21, 0x2c, 0x9b, 0xa0, 0x8c, 0x25, 0x57, 0x0f, 0xea, 0xbb, 0x3d, 0x3a, 0xe8, 0x51, 0xda, 0x43, 0x58, 0xd1, 0x41, 0xa9, 0x24, 0x57, 0x0f, 0x1a, 0x7b, 0x3d, 0x3a, 0xe8, 0x51, 0x2a,
0x2a, 0x63, 0x84, 0x0d, 0x33, 0x7e, 0xae, 0x27, 0xeb, 0x07, 0x23, 0x67, 0xef, 0x4d, 0x98, 0xee, 0x63, 0x84, 0x09, 0xb3, 0x5e, 0xa6, 0x27, 0xeb, 0xf9, 0x23, 0x67, 0xef, 0x2d, 0x98, 0xe9, 0xa6,
0x66, 0xb3, 0x5b, 0x31, 0xc4, 0x7b, 0xb0, 0x90, 0xdd, 0x8a, 0xb7, 0x19, 0x3a, 0xa3, 0xb4, 0x19, 0xb3, 0x5b, 0x31, 0xc4, 0xfb, 0xb0, 0x98, 0xde, 0x8a, 0xb7, 0x19, 0x3a, 0xa3, 0xb4, 0x19, 0x12,
0x52, 0x26, 0xfc, 0x67, 0x0b, 0xd0, 0xc1, 0x30, 0x22, 0xb9, 0xeb, 0xe4, 0x1d, 0xa1, 0x8e, 0x15, 0x26, 0xfc, 0x67, 0x03, 0xd0, 0xe1, 0x30, 0x24, 0x99, 0xeb, 0xe4, 0x1d, 0xa1, 0x8e, 0x14, 0x37,
0x37, 0x54, 0x9b, 0x46, 0x62, 0x84, 0x30, 0xcc, 0x0d, 0x86, 0x11, 0x71, 0x8f, 0x49, 0xc7, 0xf7, 0x54, 0x9b, 0x46, 0x62, 0x84, 0x30, 0xcc, 0x0f, 0x86, 0x21, 0x71, 0x4e, 0x48, 0xc7, 0x73, 0x1d,
0x5c, 0xca, 0xaa, 0xbf, 0x79, 0x27, 0x43, 0xc3, 0xfb, 0xb0, 0xa4, 0x21, 0x1d, 0x4f, 0xe8, 0x5f, 0xca, 0xaa, 0xbf, 0x05, 0x2b, 0x45, 0xc3, 0x07, 0xb0, 0x9c, 0x43, 0x5a, 0x4d, 0xe8, 0x5f, 0x18,
0x58, 0xd0, 0xdc, 0x69, 0x7b, 0x1d, 0xd2, 0x7f, 0xff, 0xa2, 0xe3, 0x43, 0x58, 0x2d, 0xc0, 0x32, 0xd0, 0xda, 0xb5, 0xdd, 0x0e, 0xe9, 0xbf, 0x7f, 0xd1, 0xf1, 0x11, 0xac, 0x15, 0x60, 0xa9, 0x26,
0x9e, 0x70, 0x27, 0x30, 0x27, 0xbf, 0xf4, 0x2e, 0x0d, 0x70, 0x1b, 0xe6, 0x95, 0x7d, 0xc6, 0xc3, 0xdc, 0x29, 0xcc, 0xcb, 0x2f, 0xbd, 0x4b, 0x03, 0xdc, 0x81, 0x05, 0x65, 0x9f, 0x6a, 0x58, 0xfb,
0xda, 0x07, 0x94, 0x93, 0xfd, 0x5d, 0x22, 0xde, 0x87, 0x25, 0x6d, 0xb7, 0xf1, 0x70, 0xff, 0xc9, 0x80, 0x32, 0xb2, 0xbf, 0x4b, 0xc4, 0x07, 0xb0, 0x9c, 0xdb, 0xad, 0x1a, 0xee, 0x3f, 0x19, 0xb0,
0x82, 0xd5, 0xe3, 0xcc, 0x0d, 0x73, 0xd8, 0xeb, 0x9c, 0x7a, 0xed, 0x41, 0x92, 0xb1, 0x74, 0xb3, 0x76, 0x92, 0xba, 0x61, 0x8e, 0x7a, 0x9d, 0x33, 0xd7, 0x1e, 0xc4, 0x19, 0x4b, 0x37, 0x5d, 0x7a,
0xa5, 0x57, 0x37, 0x2d, 0xbd, 0x3c, 0xc1, 0x98, 0xdc, 0x8e, 0xc9, 0x38, 0x23, 0x75, 0xa5, 0x5c, 0x75, 0x93, 0xd2, 0xcb, 0x15, 0x8c, 0xf1, 0xed, 0x18, 0x8f, 0x53, 0x52, 0x4f, 0x96, 0x4b, 0x3d,
0xea, 0x49, 0x5d, 0xea, 0xd4, 0xba, 0xaa, 0x19, 0xeb, 0x3a, 0x02, 0xbb, 0x08, 0xe8, 0x78, 0x7d, 0x95, 0x97, 0x3a, 0xb1, 0xae, 0x5a, 0xca, 0xba, 0x8e, 0xc1, 0x2c, 0x02, 0x5a, 0xad, 0x2f, 0xf9,
0xc9, 0x7f, 0x4d, 0x40, 0x23, 0xfb, 0x45, 0xa5, 0x87, 0x56, 0x20, 0x76, 0x0a, 0x6e, 0x22, 0xe3, 0x9f, 0x09, 0x68, 0xa6, 0xbf, 0xa8, 0xf4, 0xd0, 0x0a, 0xc4, 0x4e, 0xc0, 0x4d, 0xa4, 0xbc, 0x7e,
0xf5, 0x39, 0xb1, 0x2a, 0xba, 0x58, 0xdf, 0x52, 0x14, 0x36, 0x29, 0x6a, 0xb9, 0xae, 0xef, 0x77, 0x3c, 0x91, 0xbf, 0xa5, 0x28, 0xb3, 0x26, 0xea, 0xbc, 0xae, 0xe7, 0x75, 0xfb, 0x84, 0x3f, 0x80,
0xfb, 0x84, 0x3f, 0x72, 0xbf, 0x18, 0x9e, 0x6c, 0x1c, 0x47, 0x61, 0xcf, 0xeb, 0xfe, 0xb0, 0xdd, 0xbf, 0x18, 0x9e, 0x6e, 0x9e, 0x84, 0x41, 0xcf, 0xed, 0xfe, 0xd0, 0xee, 0x0f, 0x89, 0xa2, 0xea,
0x1f, 0x12, 0x45, 0x9d, 0x77, 0x60, 0xfa, 0xa4, 0xdd, 0x21, 0x9f, 0x39, 0x8f, 0x99, 0x46, 0x2e, 0x3b, 0x30, 0x73, 0x6a, 0x77, 0xc8, 0x67, 0xd6, 0x63, 0x56, 0xd2, 0x5f, 0xb6, 0x30, 0x66, 0x46,
0x5a, 0x98, 0x30, 0xa3, 0x6f, 0x43, 0x2d, 0x94, 0xc9, 0xe3, 0x14, 0x5b, 0x79, 0x4d, 0x5b, 0xd9, 0xdf, 0x86, 0x7a, 0x20, 0x13, 0xcb, 0x19, 0xb6, 0xf2, 0x5a, 0x6e, 0x65, 0xdb, 0x0d, 0x6f, 0x6f,
0xf2, 0xa2, 0xdb, 0x5b, 0x7c, 0x61, 0xca, 0x8d, 0x3e, 0x81, 0x09, 0xf2, 0xaa, 0x39, 0x3d, 0xc2, 0xf3, 0x85, 0x09, 0x37, 0xfa, 0x04, 0x26, 0xc8, 0xab, 0xd6, 0xec, 0x08, 0xbb, 0x4d, 0x90, 0x57,
0x6e, 0x13, 0xe4, 0x15, 0x7e, 0x04, 0xcb, 0x26, 0x3d, 0x8e, 0x75, 0x2a, 0x5b, 0xff, 0x46, 0xc0, 0xf8, 0x11, 0xac, 0xe8, 0x74, 0x5c, 0xe9, 0xc4, 0xb6, 0xff, 0x85, 0x80, 0xff, 0xbb, 0x00, 0x7d,
0xff, 0x41, 0x80, 0xbe, 0x0b, 0xb3, 0x9d, 0xf4, 0xdd, 0x19, 0x35, 0x92, 0x75, 0x99, 0xc7, 0x77, 0x17, 0xe6, 0x3a, 0xc9, 0x9b, 0x34, 0x6a, 0xc6, 0xeb, 0x52, 0x0f, 0xf3, 0xe6, 0x8a, 0x8e, 0x4c,
0x7b, 0xd9, 0x44, 0xa6, 0x01, 0xba, 0x03, 0xb5, 0x9f, 0x24, 0x8f, 0x12, 0x68, 0x49, 0x30, 0xa9, 0x7d, 0x74, 0x07, 0xea, 0x3f, 0x89, 0x1f, 0x2c, 0xd0, 0xb2, 0x60, 0x52, 0x9f, 0x52, 0xcc, 0xab,
0xcf, 0x25, 0xf6, 0x55, 0x9d, 0xc8, 0xd7, 0x9d, 0x25, 0x1d, 0x6f, 0xb9, 0x4e, 0xed, 0xb5, 0xcb, 0x79, 0x22, 0x5f, 0x77, 0x1e, 0x77, 0xc3, 0xe5, 0x3a, 0xb5, 0x0f, 0x2f, 0xd7, 0xa5, 0x9b, 0xe6,
0x75, 0xd9, 0xc6, 0xf8, 0x36, 0xcc, 0x77, 0xd5, 0xf7, 0x62, 0xb4, 0x92, 0xbc, 0xfe, 0xe7, 0x9e, 0x3b, 0xb0, 0xd0, 0x55, 0xdf, 0x92, 0xd1, 0x6a, 0xfc, 0xcf, 0x80, 0xcc, 0xb3, 0xb6, 0xd9, 0xd2,
0xae, 0xed, 0xa6, 0x79, 0x82, 0x06, 0xe8, 0x2e, 0xcc, 0x51, 0xe5, 0x69, 0x15, 0x25, 0xb2, 0xe5, 0x4f, 0x50, 0x1f, 0xdd, 0x85, 0x79, 0xaa, 0x3c, 0xbb, 0xa2, 0x58, 0xb6, 0xcc, 0xc3, 0xb0, 0xb9,
0x1e, 0x7f, 0xed, 0x15, 0x23, 0x9d, 0x06, 0xe8, 0xc7, 0xb0, 0xd2, 0x35, 0xbf, 0x6b, 0xa2, 0x1b, 0xaa, 0xa5, 0x53, 0x1f, 0xfd, 0x18, 0x56, 0xbb, 0xfa, 0x37, 0x4f, 0x74, 0x23, 0xb3, 0x6b, 0xfe,
0xb9, 0x5d, 0xf5, 0x77, 0x45, 0x1b, 0x5f, 0xc4, 0x42, 0x03, 0x74, 0x02, 0xab, 0xdd, 0xa2, 0x47, 0xcd, 0xd1, 0xc4, 0x97, 0xb1, 0x50, 0x1f, 0x9d, 0xc2, 0x5a, 0xb7, 0xe8, 0x01, 0x11, 0x7d, 0x94,
0x42, 0xf4, 0x51, 0xfa, 0x81, 0xc2, 0xd7, 0x4b, 0xfb, 0xe6, 0xc5, 0x4c, 0x34, 0x40, 0x4f, 0x00, 0x7c, 0xa0, 0xf0, 0x65, 0xd3, 0xbc, 0x79, 0x39, 0x13, 0xf5, 0xd1, 0x13, 0x40, 0x61, 0xee, 0x15,
0x45, 0xda, 0x4b, 0x19, 0x5a, 0x13, 0x6b, 0x8d, 0xaf, 0x80, 0xf6, 0x07, 0x25, 0xb3, 0x34, 0x40, 0x0d, 0xad, 0x8b, 0xb5, 0xda, 0x17, 0x42, 0xf3, 0x83, 0x92, 0x59, 0xea, 0xa3, 0x0e, 0xb4, 0xba,
0x1d, 0x68, 0x76, 0x0b, 0x9e, 0x61, 0x10, 0xce, 0xfc, 0x55, 0xc3, 0xf8, 0x04, 0x65, 0x7f, 0x74, 0x05, 0x4f, 0x34, 0x08, 0xa7, 0xfe, 0xc6, 0xa1, 0x7d, 0x9e, 0x32, 0x3f, 0xba, 0x94, 0x87, 0xe3,
0x21, 0x0f, 0xc7, 0xdd, 0xd5, 0xde, 0x11, 0x24, 0x6e, 0xe3, 0x33, 0x88, 0xc4, 0x5d, 0xf0, 0x00, 0xee, 0xe6, 0xde, 0x18, 0x24, 0x6e, 0xed, 0x13, 0x89, 0xc4, 0x5d, 0xf0, 0x38, 0xf1, 0x14, 0x96,
0xf1, 0x14, 0x96, 0xba, 0x7a, 0x63, 0x1d, 0x99, 0x57, 0x49, 0x2b, 0xbb, 0x5e, 0x36, 0x4d, 0x03, 0xbb, 0xf9, 0xa6, 0x3b, 0xd2, 0xaf, 0x92, 0x56, 0x76, 0xbd, 0x6c, 0x9a, 0xfa, 0xe8, 0x00, 0x1a,
0xb4, 0x0f, 0xf5, 0xd3, 0x6c, 0xa7, 0x18, 0x25, 0xff, 0x57, 0xd1, 0x1b, 0xe6, 0xb6, 0x5d, 0x34, 0x67, 0xe9, 0x2e, 0x32, 0x8a, 0xff, 0xcb, 0x92, 0x6f, 0xa6, 0x9b, 0x66, 0xd1, 0x94, 0x14, 0x39,
0x25, 0x45, 0xce, 0xb5, 0x5e, 0x55, 0x91, 0xf5, 0x6e, 0xb0, 0x2a, 0xb2, 0xa9, 0x67, 0x7b, 0x08, 0xd3, 0x96, 0x55, 0x45, 0xce, 0x77, 0x8a, 0x55, 0x91, 0x75, 0xfd, 0xdc, 0x23, 0x58, 0xea, 0x65,
0x8b, 0xbd, 0x7c, 0x37, 0x12, 0x5d, 0x4b, 0x1a, 0x88, 0x86, 0xf6, 0xaa, 0xbd, 0x56, 0x3c, 0xc9, 0x3b, 0x95, 0xe8, 0x5a, 0xdc, 0x5c, 0xd4, 0xb4, 0x5e, 0xcd, 0xf5, 0xe2, 0x49, 0xfe, 0xbd, 0x6e,
0xbf, 0xd7, 0xcd, 0x77, 0xfa, 0xe4, 0xf7, 0x4c, 0x4d, 0x47, 0x7b, 0xad, 0x78, 0x92, 0x3b, 0xaa, 0xb6, 0x0b, 0x28, 0xbf, 0xa7, 0x6b, 0x48, 0x9a, 0xeb, 0xc5, 0x93, 0xdc, 0x51, 0xd5, 0x62, 0x55,
0x5a, 0x90, 0x4a, 0x47, 0xcd, 0x15, 0xbd, 0xf6, 0x8a, 0x91, 0x4e, 0x03, 0x74, 0x1b, 0x66, 0x12, 0x3a, 0x6a, 0xa6, 0x20, 0x36, 0x57, 0xb5, 0x74, 0xea, 0xa3, 0xdb, 0x30, 0x1b, 0xd3, 0x10, 0xca,
0x1a, 0x42, 0x39, 0xa6, 0x78, 0xe1, 0x92, 0x46, 0xe3, 0xa1, 0x49, 0xc6, 0x0c, 0x94, 0xe7, 0xa0, 0x30, 0x45, 0x0b, 0x97, 0x73, 0x34, 0x1e, 0x9a, 0x64, 0xcc, 0x40, 0x59, 0x0e, 0xaa, 0x86, 0xa6,
0x6a, 0x68, 0xca, 0xf6, 0x7d, 0x9e, 0xc8, 0x6e, 0x84, 0xd2, 0xa8, 0x90, 0x07, 0x64, 0x6c, 0x98, 0x74, 0x4f, 0xe8, 0x89, 0xec, 0x54, 0x28, 0x4d, 0x0c, 0x79, 0x40, 0xda, 0x66, 0x8a, 0x3c, 0x20,
0xc8, 0x03, 0x32, 0x77, 0x38, 0x62, 0xeb, 0xc9, 0x35, 0x16, 0xa4, 0xf5, 0xe8, 0x8d, 0x0f, 0x69, 0x7d, 0xf7, 0x23, 0xb2, 0x9e, 0x4c, 0xd3, 0x41, 0x5a, 0x4f, 0xbe, 0x29, 0x22, 0xad, 0x47, 0xd3,
0x3d, 0x86, 0x5e, 0x44, 0x1c, 0xe5, 0x95, 0xee, 0x81, 0x8c, 0xf2, 0xd9, 0xfe, 0x84, 0x8c, 0xf2, 0xa7, 0x88, 0xa2, 0xbc, 0xd2, 0x59, 0x90, 0x51, 0x3e, 0xdd, 0xbb, 0x90, 0x51, 0x3e, 0xd3, 0x84,
0xb9, 0x46, 0x43, 0x2c, 0x9a, 0x5e, 0x1f, 0x17, 0xb8, 0x9b, 0x28, 0xcc, 0x0a, 0xdc, 0x4d, 0xd6, 0x88, 0x44, 0xcb, 0xd7, 0xce, 0x05, 0xee, 0x26, 0x8a, 0xb6, 0x02, 0x77, 0x93, 0x75, 0xd4, 0x33,
0x4a, 0xcf, 0xa0, 0x61, 0x2c, 0x10, 0xd1, 0x87, 0x62, 0x5d, 0x51, 0x31, 0x6b, 0xaf, 0x97, 0x33, 0x68, 0x6a, 0x8b, 0x47, 0xf4, 0xa1, 0x58, 0x57, 0x54, 0xe8, 0x9a, 0x1b, 0xe5, 0x0c, 0x1c, 0x6e,
0x70, 0xb8, 0x7a, 0x85, 0x26, 0xe1, 0x1a, 0xeb, 0x48, 0x09, 0xb7, 0xa0, 0xb4, 0xbb, 0x0b, 0x73, 0xbe, 0x7a, 0x93, 0x70, 0xb5, 0x35, 0xa6, 0x84, 0x5b, 0x50, 0xf6, 0xdd, 0x85, 0x79, 0xb5, 0xb2,
0x6a, 0xf5, 0x24, 0x4d, 0x31, 0x57, 0xbd, 0x49, 0x53, 0xd4, 0x4a, 0xad, 0x7d, 0xa8, 0xe7, 0xf2, 0x92, 0xa6, 0x98, 0xa9, 0xec, 0xa4, 0x29, 0xe6, 0xca, 0xb0, 0x03, 0x68, 0x64, 0x72, 0x79, 0x79,
0x75, 0x79, 0x94, 0x7a, 0x4d, 0x21, 0x8f, 0xd2, 0x94, 0xe2, 0x3f, 0x83, 0x86, 0x31, 0xff, 0x97, 0x94, 0xf9, 0x7a, 0x43, 0x1e, 0xa5, 0x2e, 0xfd, 0x7f, 0x06, 0x4d, 0x6d, 0x6d, 0x20, 0x35, 0x57,
0x9a, 0x2b, 0xaa, 0x54, 0xa4, 0xe6, 0x8a, 0xcb, 0x87, 0x3b, 0x50, 0x93, 0x64, 0x69, 0xfb, 0x6a, 0x54, 0xc5, 0x48, 0xcd, 0x15, 0x97, 0x16, 0x77, 0xa0, 0x2e, 0xc9, 0xd2, 0xf6, 0xd5, 0x3c, 0x5c,
0xae, 0x2d, 0x6d, 0x3f, 0x9b, 0x12, 0xef, 0x43, 0x3d, 0xf7, 0x51, 0x29, 0x9d, 0x9e, 0xaf, 0x4b, 0xda, 0x7e, 0x3a, 0x5d, 0x3e, 0x80, 0x46, 0xe6, 0xa3, 0x52, 0xba, 0x7c, 0x2e, 0x2f, 0xa5, 0xd3,
0xe9, 0x4c, 0xc9, 0xf5, 0x8f, 0xf2, 0x59, 0x4e, 0x92, 0x7f, 0xa2, 0xf5, 0xdc, 0x75, 0xac, 0xe5, 0x25, 0xde, 0x3f, 0xca, 0x66, 0x39, 0x71, 0x6e, 0x8a, 0x36, 0x32, 0xd7, 0x71, 0x2e, 0xc7, 0x36,
0xd1, 0xf6, 0x8d, 0x0b, 0x38, 0xb8, 0x69, 0xe8, 0x49, 0x94, 0x34, 0x0d, 0x63, 0x9e, 0x2a, 0x4d, 0x6f, 0x5c, 0xc2, 0xc1, 0x4d, 0x23, 0x9f, 0x44, 0x49, 0xd3, 0xd0, 0xe6, 0xb0, 0xd2, 0x34, 0xf4,
0xc3, 0x9c, 0x7d, 0x6d, 0xd7, 0x9f, 0xcd, 0x6f, 0xf0, 0xbf, 0x66, 0x7e, 0xca, 0x7e, 0x5f, 0x4c, 0xd9, 0xd7, 0x4e, 0xe3, 0xd9, 0xc2, 0x26, 0xff, 0xdb, 0xe6, 0xa7, 0xec, 0xf7, 0xc5, 0x34, 0x4b,
0xb1, 0x14, 0xee, 0xf6, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x20, 0x7b, 0x1e, 0x22, 0xb6, 0x29, 0xe1, 0x6e, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x53, 0x05, 0x0a, 0x0e, 0xd2, 0x29, 0x00, 0x00,
0x00, 0x00,
} }

@ -395,11 +395,12 @@ message SetGroupMemberNicknameResp{
message SetGroupMemberInfoReq{ message SetGroupMemberInfoReq{
string groupID = 1; string groupID = 1;
string userID = 2; string userID = 2;
string operationID = 3; string opUserID = 3;
google.protobuf.StringValue nickname = 4; string operationID = 4;
google.protobuf.StringValue faceURL = 5; google.protobuf.StringValue nickname = 5;
google.protobuf.Int32Value roleLevel = 6; google.protobuf.StringValue faceURL = 6;
google.protobuf.StringValue ex = 7; google.protobuf.Int32Value roleLevel = 7;
google.protobuf.StringValue ex = 8;
} }
message SetGroupMemberInfoResp{ message SetGroupMemberInfoResp{

Loading…
Cancel
Save