Files
open-im-server/pkg/proto/friend/friend.pb.go
T

2103 lines
70 KiB
Go
Raw Normal View History

2021-05-26 19:44:38 +08:00
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: friend/friend.proto
2021-09-22 20:10:38 +08:00
package friend // import "friend"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
2021-05-26 19:44:38 +08:00
import (
2021-09-22 20:10:38 +08:00
context "golang.org/x/net/context"
2021-05-26 19:44:38 +08:00
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
2021-09-22 20:10:38 +08:00
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
2021-05-26 19:44:38 +08:00
type CommonResp struct {
2021-09-22 20:10:38 +08:00
ErrorCode int32 `protobuf:"varint,1,opt,name=errorCode" json:"errorCode,omitempty"`
ErrorMsg string `protobuf:"bytes,2,opt,name=errorMsg" json:"errorMsg,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommonResp) Reset() { *m = CommonResp{} }
func (m *CommonResp) String() string { return proto.CompactTextString(m) }
func (*CommonResp) ProtoMessage() {}
func (*CommonResp) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{0}
2021-05-26 19:44:38 +08:00
}
func (m *CommonResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommonResp.Unmarshal(m, b)
}
func (m *CommonResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommonResp.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *CommonResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommonResp.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *CommonResp) XXX_Size() int {
return xxx_messageInfo_CommonResp.Size(m)
}
func (m *CommonResp) XXX_DiscardUnknown() {
xxx_messageInfo_CommonResp.DiscardUnknown(m)
}
var xxx_messageInfo_CommonResp proto.InternalMessageInfo
func (m *CommonResp) GetErrorCode() int32 {
if m != nil {
return m.ErrorCode
}
return 0
}
func (m *CommonResp) GetErrorMsg() string {
if m != nil {
return m.ErrorMsg
}
return ""
}
2021-06-28 15:33:26 +08:00
type GetFriendsInfoReq struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,3,opt,name=Token" json:"Token,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendsInfoReq) Reset() { *m = GetFriendsInfoReq{} }
func (m *GetFriendsInfoReq) String() string { return proto.CompactTextString(m) }
func (*GetFriendsInfoReq) ProtoMessage() {}
func (*GetFriendsInfoReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{1}
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendsInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendsInfoReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendsInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendsInfoReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2021-09-22 20:10:38 +08:00
func (dst *GetFriendsInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendsInfoReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendsInfoReq) XXX_Size() int {
return xxx_messageInfo_GetFriendsInfoReq.Size(m)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendsInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendsInfoReq.DiscardUnknown(m)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
var xxx_messageInfo_GetFriendsInfoReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2021-06-28 15:33:26 +08:00
func (m *GetFriendsInfoReq) GetUid() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Uid
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendsInfoReq) GetOperationID() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.OperationID
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendsInfoReq) GetToken() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Token
}
return ""
}
2021-06-28 15:33:26 +08:00
type GetFriendInfoResp struct {
2021-09-22 20:10:38 +08:00
ErrorCode int32 `protobuf:"varint,1,opt,name=errorCode" json:"errorCode,omitempty"`
ErrorMsg string `protobuf:"bytes,2,opt,name=errorMsg" json:"errorMsg,omitempty"`
Data *GetFriendData `protobuf:"bytes,3,opt,name=Data" json:"Data,omitempty"`
2021-06-28 15:33:26 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendInfoResp) Reset() { *m = GetFriendInfoResp{} }
func (m *GetFriendInfoResp) String() string { return proto.CompactTextString(m) }
func (*GetFriendInfoResp) ProtoMessage() {}
func (*GetFriendInfoResp) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{2}
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendInfoResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendInfoResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2021-09-22 20:10:38 +08:00
func (dst *GetFriendInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendInfoResp.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendInfoResp) XXX_Size() int {
return xxx_messageInfo_GetFriendInfoResp.Size(m)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendInfoResp.DiscardUnknown(m)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
var xxx_messageInfo_GetFriendInfoResp proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2021-06-28 15:33:26 +08:00
func (m *GetFriendInfoResp) GetErrorCode() int32 {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.ErrorCode
}
return 0
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendInfoResp) GetErrorMsg() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.ErrorMsg
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendInfoResp) GetData() *GetFriendData {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Data
}
return nil
}
2021-06-28 15:33:26 +08:00
type GetFriendData struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
Icon string `protobuf:"bytes,2,opt,name=icon" json:"icon,omitempty"`
Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
Gender int32 `protobuf:"varint,4,opt,name=gender" json:"gender,omitempty"`
Mobile string `protobuf:"bytes,5,opt,name=mobile" json:"mobile,omitempty"`
Birth string `protobuf:"bytes,6,opt,name=birth" json:"birth,omitempty"`
Email string `protobuf:"bytes,7,opt,name=email" json:"email,omitempty"`
Ex string `protobuf:"bytes,8,opt,name=ex" json:"ex,omitempty"`
Comment string `protobuf:"bytes,9,opt,name=comment" json:"comment,omitempty"`
IsFriend int32 `protobuf:"varint,10,opt,name=isFriend" json:"isFriend,omitempty"`
IsInBlackList int32 `protobuf:"varint,11,opt,name=isInBlackList" json:"isInBlackList,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) Reset() { *m = GetFriendData{} }
func (m *GetFriendData) String() string { return proto.CompactTextString(m) }
func (*GetFriendData) ProtoMessage() {}
func (*GetFriendData) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{3}
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendData.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendData.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2021-09-22 20:10:38 +08:00
func (dst *GetFriendData) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendData.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) XXX_Size() int {
return xxx_messageInfo_GetFriendData.Size(m)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendData.DiscardUnknown(m)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
var xxx_messageInfo_GetFriendData proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetUid() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Uid
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetIcon() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Icon
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetName() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Name
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetGender() int32 {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Gender
}
return 0
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetMobile() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Mobile
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetBirth() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Birth
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetEmail() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Email
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetEx() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Ex
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetComment() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Comment
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetIsFriend() int32 {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.IsFriend
}
return 0
}
2021-06-28 15:33:26 +08:00
func (m *GetFriendData) GetIsInBlackList() int32 {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.IsInBlackList
}
return 0
}
type AddFriendReq struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,3,opt,name=Token" json:"Token,omitempty"`
ReqMessage string `protobuf:"bytes,4,opt,name=ReqMessage" json:"ReqMessage,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AddFriendReq) Reset() { *m = AddFriendReq{} }
func (m *AddFriendReq) String() string { return proto.CompactTextString(m) }
func (*AddFriendReq) ProtoMessage() {}
func (*AddFriendReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{4}
2021-05-26 19:44:38 +08:00
}
func (m *AddFriendReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddFriendReq.Unmarshal(m, b)
}
func (m *AddFriendReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddFriendReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *AddFriendReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddFriendReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *AddFriendReq) XXX_Size() int {
return xxx_messageInfo_AddFriendReq.Size(m)
}
func (m *AddFriendReq) XXX_DiscardUnknown() {
xxx_messageInfo_AddFriendReq.DiscardUnknown(m)
}
var xxx_messageInfo_AddFriendReq proto.InternalMessageInfo
func (m *AddFriendReq) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *AddFriendReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *AddFriendReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *AddFriendReq) GetReqMessage() string {
if m != nil {
return m.ReqMessage
}
return ""
}
2021-09-22 20:10:38 +08:00
type ImportFriendReq struct {
2021-09-26 14:26:45 +08:00
UidList []string `protobuf:"bytes,1,rep,name=uidList" json:"uidList,omitempty"`
2021-09-22 20:10:38 +08:00
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,3,opt,name=Token" json:"Token,omitempty"`
OwnerUid string `protobuf:"bytes,4,opt,name=OwnerUid" json:"OwnerUid,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ImportFriendReq) Reset() { *m = ImportFriendReq{} }
func (m *ImportFriendReq) String() string { return proto.CompactTextString(m) }
func (*ImportFriendReq) ProtoMessage() {}
func (*ImportFriendReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{5}
2021-09-22 20:10:38 +08:00
}
func (m *ImportFriendReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ImportFriendReq.Unmarshal(m, b)
}
func (m *ImportFriendReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ImportFriendReq.Marshal(b, m, deterministic)
}
func (dst *ImportFriendReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_ImportFriendReq.Merge(dst, src)
}
func (m *ImportFriendReq) XXX_Size() int {
return xxx_messageInfo_ImportFriendReq.Size(m)
}
func (m *ImportFriendReq) XXX_DiscardUnknown() {
xxx_messageInfo_ImportFriendReq.DiscardUnknown(m)
}
var xxx_messageInfo_ImportFriendReq proto.InternalMessageInfo
2021-09-26 14:26:45 +08:00
func (m *ImportFriendReq) GetUidList() []string {
2021-09-22 20:10:38 +08:00
if m != nil {
2021-09-26 14:26:45 +08:00
return m.UidList
2021-09-22 20:10:38 +08:00
}
2021-09-26 14:26:45 +08:00
return nil
2021-09-22 20:10:38 +08:00
}
func (m *ImportFriendReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *ImportFriendReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *ImportFriendReq) GetOwnerUid() string {
if m != nil {
return m.OwnerUid
}
return ""
}
2021-09-26 14:26:45 +08:00
type ImportFriendResp struct {
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
FailedUidList []string `protobuf:"bytes,2,rep,name=failedUidList" json:"failedUidList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ImportFriendResp) Reset() { *m = ImportFriendResp{} }
func (m *ImportFriendResp) String() string { return proto.CompactTextString(m) }
func (*ImportFriendResp) ProtoMessage() {}
func (*ImportFriendResp) Descriptor() ([]byte, []int) {
return fileDescriptor_friend_05873114bd399886, []int{6}
}
func (m *ImportFriendResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ImportFriendResp.Unmarshal(m, b)
}
func (m *ImportFriendResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ImportFriendResp.Marshal(b, m, deterministic)
}
func (dst *ImportFriendResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_ImportFriendResp.Merge(dst, src)
}
func (m *ImportFriendResp) XXX_Size() int {
return xxx_messageInfo_ImportFriendResp.Size(m)
}
func (m *ImportFriendResp) XXX_DiscardUnknown() {
xxx_messageInfo_ImportFriendResp.DiscardUnknown(m)
}
var xxx_messageInfo_ImportFriendResp proto.InternalMessageInfo
func (m *ImportFriendResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
func (m *ImportFriendResp) GetFailedUidList() []string {
if m != nil {
return m.FailedUidList
}
return nil
}
2021-05-26 19:44:38 +08:00
type GetFriendApplyReq struct {
2021-09-22 20:10:38 +08:00
OperationID string `protobuf:"bytes,1,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,2,opt,name=Token" json:"Token,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetFriendApplyReq) Reset() { *m = GetFriendApplyReq{} }
func (m *GetFriendApplyReq) String() string { return proto.CompactTextString(m) }
func (*GetFriendApplyReq) ProtoMessage() {}
func (*GetFriendApplyReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{7}
2021-05-26 19:44:38 +08:00
}
func (m *GetFriendApplyReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendApplyReq.Unmarshal(m, b)
}
func (m *GetFriendApplyReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendApplyReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *GetFriendApplyReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendApplyReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *GetFriendApplyReq) XXX_Size() int {
return xxx_messageInfo_GetFriendApplyReq.Size(m)
}
func (m *GetFriendApplyReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendApplyReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetFriendApplyReq proto.InternalMessageInfo
func (m *GetFriendApplyReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *GetFriendApplyReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
type GetFriendApplyResp struct {
2021-09-22 20:10:38 +08:00
ErrorCode int32 `protobuf:"varint,1,opt,name=errorCode" json:"errorCode,omitempty"`
ErrorMsg string `protobuf:"bytes,2,opt,name=errorMsg" json:"errorMsg,omitempty"`
Data []*ApplyUserInfo `protobuf:"bytes,4,rep,name=data" json:"data,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetFriendApplyResp) Reset() { *m = GetFriendApplyResp{} }
func (m *GetFriendApplyResp) String() string { return proto.CompactTextString(m) }
func (*GetFriendApplyResp) ProtoMessage() {}
func (*GetFriendApplyResp) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{8}
2021-05-26 19:44:38 +08:00
}
func (m *GetFriendApplyResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendApplyResp.Unmarshal(m, b)
}
func (m *GetFriendApplyResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendApplyResp.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *GetFriendApplyResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendApplyResp.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *GetFriendApplyResp) XXX_Size() int {
return xxx_messageInfo_GetFriendApplyResp.Size(m)
}
func (m *GetFriendApplyResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendApplyResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetFriendApplyResp proto.InternalMessageInfo
func (m *GetFriendApplyResp) GetErrorCode() int32 {
if m != nil {
return m.ErrorCode
}
return 0
}
func (m *GetFriendApplyResp) GetErrorMsg() string {
if m != nil {
return m.ErrorMsg
}
return ""
}
func (m *GetFriendApplyResp) GetData() []*ApplyUserInfo {
if m != nil {
return m.Data
}
return nil
}
type ApplyUserInfo struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
Icon string `protobuf:"bytes,3,opt,name=icon" json:"icon,omitempty"`
Gender int32 `protobuf:"varint,4,opt,name=gender" json:"gender,omitempty"`
Mobile string `protobuf:"bytes,5,opt,name=mobile" json:"mobile,omitempty"`
Birth string `protobuf:"bytes,6,opt,name=birth" json:"birth,omitempty"`
Email string `protobuf:"bytes,7,opt,name=email" json:"email,omitempty"`
Ex string `protobuf:"bytes,8,opt,name=ex" json:"ex,omitempty"`
Flag int32 `protobuf:"varint,9,opt,name=flag" json:"flag,omitempty"`
ApplyTime string `protobuf:"bytes,10,opt,name=applyTime" json:"applyTime,omitempty"`
ReqMessage string `protobuf:"bytes,11,opt,name=reqMessage" json:"reqMessage,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ApplyUserInfo) Reset() { *m = ApplyUserInfo{} }
func (m *ApplyUserInfo) String() string { return proto.CompactTextString(m) }
func (*ApplyUserInfo) ProtoMessage() {}
func (*ApplyUserInfo) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{9}
2021-05-26 19:44:38 +08:00
}
func (m *ApplyUserInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ApplyUserInfo.Unmarshal(m, b)
}
func (m *ApplyUserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ApplyUserInfo.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *ApplyUserInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_ApplyUserInfo.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *ApplyUserInfo) XXX_Size() int {
return xxx_messageInfo_ApplyUserInfo.Size(m)
}
func (m *ApplyUserInfo) XXX_DiscardUnknown() {
xxx_messageInfo_ApplyUserInfo.DiscardUnknown(m)
}
var xxx_messageInfo_ApplyUserInfo proto.InternalMessageInfo
func (m *ApplyUserInfo) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *ApplyUserInfo) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *ApplyUserInfo) GetIcon() string {
if m != nil {
return m.Icon
}
return ""
}
func (m *ApplyUserInfo) GetGender() int32 {
if m != nil {
return m.Gender
}
return 0
}
func (m *ApplyUserInfo) GetMobile() string {
if m != nil {
return m.Mobile
}
return ""
}
func (m *ApplyUserInfo) GetBirth() string {
if m != nil {
return m.Birth
}
return ""
}
func (m *ApplyUserInfo) GetEmail() string {
if m != nil {
return m.Email
}
return ""
}
func (m *ApplyUserInfo) GetEx() string {
if m != nil {
return m.Ex
}
return ""
}
func (m *ApplyUserInfo) GetFlag() int32 {
if m != nil {
return m.Flag
}
return 0
}
func (m *ApplyUserInfo) GetApplyTime() string {
if m != nil {
return m.ApplyTime
}
return ""
}
func (m *ApplyUserInfo) GetReqMessage() string {
if m != nil {
return m.ReqMessage
}
return ""
}
type GetFriendListReq struct {
2021-09-22 20:10:38 +08:00
OperationID string `protobuf:"bytes,1,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,2,opt,name=Token" json:"Token,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetFriendListReq) Reset() { *m = GetFriendListReq{} }
func (m *GetFriendListReq) String() string { return proto.CompactTextString(m) }
func (*GetFriendListReq) ProtoMessage() {}
func (*GetFriendListReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{10}
2021-05-26 19:44:38 +08:00
}
func (m *GetFriendListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendListReq.Unmarshal(m, b)
}
func (m *GetFriendListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendListReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *GetFriendListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendListReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *GetFriendListReq) XXX_Size() int {
return xxx_messageInfo_GetFriendListReq.Size(m)
}
func (m *GetFriendListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendListReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetFriendListReq proto.InternalMessageInfo
func (m *GetFriendListReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *GetFriendListReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
type GetFriendListResp struct {
2021-09-22 20:10:38 +08:00
ErrorCode int32 `protobuf:"varint,1,opt,name=errorCode" json:"errorCode,omitempty"`
ErrorMsg string `protobuf:"bytes,2,opt,name=errorMsg" json:"errorMsg,omitempty"`
Data []*UserInfo `protobuf:"bytes,3,rep,name=data" json:"data,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetFriendListResp) Reset() { *m = GetFriendListResp{} }
func (m *GetFriendListResp) String() string { return proto.CompactTextString(m) }
func (*GetFriendListResp) ProtoMessage() {}
func (*GetFriendListResp) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{11}
2021-05-26 19:44:38 +08:00
}
func (m *GetFriendListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendListResp.Unmarshal(m, b)
}
func (m *GetFriendListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendListResp.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *GetFriendListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendListResp.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *GetFriendListResp) XXX_Size() int {
return xxx_messageInfo_GetFriendListResp.Size(m)
}
func (m *GetFriendListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendListResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetFriendListResp proto.InternalMessageInfo
func (m *GetFriendListResp) GetErrorCode() int32 {
if m != nil {
return m.ErrorCode
}
return 0
}
func (m *GetFriendListResp) GetErrorMsg() string {
if m != nil {
return m.ErrorMsg
}
return ""
}
func (m *GetFriendListResp) GetData() []*UserInfo {
if m != nil {
return m.Data
}
return nil
}
type UserInfo struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
Icon string `protobuf:"bytes,2,opt,name=icon" json:"icon,omitempty"`
Gender int32 `protobuf:"varint,4,opt,name=gender" json:"gender,omitempty"`
Mobile string `protobuf:"bytes,5,opt,name=mobile" json:"mobile,omitempty"`
Birth string `protobuf:"bytes,6,opt,name=birth" json:"birth,omitempty"`
Email string `protobuf:"bytes,7,opt,name=email" json:"email,omitempty"`
Ex string `protobuf:"bytes,8,opt,name=ex" json:"ex,omitempty"`
Comment string `protobuf:"bytes,9,opt,name=comment" json:"comment,omitempty"`
IsInBlackList int32 `protobuf:"varint,10,opt,name=isInBlackList" json:"isInBlackList,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UserInfo) Reset() { *m = UserInfo{} }
func (m *UserInfo) String() string { return proto.CompactTextString(m) }
func (*UserInfo) ProtoMessage() {}
func (*UserInfo) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{12}
2021-05-26 19:44:38 +08:00
}
func (m *UserInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UserInfo.Unmarshal(m, b)
}
func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UserInfo.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *UserInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_UserInfo.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *UserInfo) XXX_Size() int {
return xxx_messageInfo_UserInfo.Size(m)
}
func (m *UserInfo) XXX_DiscardUnknown() {
xxx_messageInfo_UserInfo.DiscardUnknown(m)
}
var xxx_messageInfo_UserInfo proto.InternalMessageInfo
func (m *UserInfo) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *UserInfo) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *UserInfo) GetIcon() string {
if m != nil {
return m.Icon
}
return ""
}
func (m *UserInfo) GetGender() int32 {
if m != nil {
return m.Gender
}
return 0
}
func (m *UserInfo) GetMobile() string {
if m != nil {
return m.Mobile
}
return ""
}
func (m *UserInfo) GetBirth() string {
if m != nil {
return m.Birth
}
return ""
}
func (m *UserInfo) GetEmail() string {
if m != nil {
return m.Email
}
return ""
}
func (m *UserInfo) GetEx() string {
if m != nil {
return m.Ex
}
return ""
}
func (m *UserInfo) GetComment() string {
if m != nil {
return m.Comment
}
return ""
}
func (m *UserInfo) GetIsInBlackList() int32 {
if m != nil {
return m.IsInBlackList
}
return 0
}
type AddBlacklistReq struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,3,opt,name=Token" json:"Token,omitempty"`
OwnerUid string `protobuf:"bytes,4,opt,name=OwnerUid" json:"OwnerUid,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AddBlacklistReq) Reset() { *m = AddBlacklistReq{} }
func (m *AddBlacklistReq) String() string { return proto.CompactTextString(m) }
func (*AddBlacklistReq) ProtoMessage() {}
func (*AddBlacklistReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{13}
2021-05-26 19:44:38 +08:00
}
func (m *AddBlacklistReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddBlacklistReq.Unmarshal(m, b)
}
func (m *AddBlacklistReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddBlacklistReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *AddBlacklistReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddBlacklistReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *AddBlacklistReq) XXX_Size() int {
return xxx_messageInfo_AddBlacklistReq.Size(m)
}
func (m *AddBlacklistReq) XXX_DiscardUnknown() {
xxx_messageInfo_AddBlacklistReq.DiscardUnknown(m)
}
var xxx_messageInfo_AddBlacklistReq proto.InternalMessageInfo
func (m *AddBlacklistReq) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *AddBlacklistReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *AddBlacklistReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
2021-09-22 20:10:38 +08:00
func (m *AddBlacklistReq) GetOwnerUid() string {
if m != nil {
return m.OwnerUid
}
return ""
}
2021-05-26 19:44:38 +08:00
type RemoveBlacklistReq struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,3,opt,name=Token" json:"Token,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RemoveBlacklistReq) Reset() { *m = RemoveBlacklistReq{} }
func (m *RemoveBlacklistReq) String() string { return proto.CompactTextString(m) }
func (*RemoveBlacklistReq) ProtoMessage() {}
func (*RemoveBlacklistReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{14}
2021-05-26 19:44:38 +08:00
}
func (m *RemoveBlacklistReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveBlacklistReq.Unmarshal(m, b)
}
func (m *RemoveBlacklistReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoveBlacklistReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *RemoveBlacklistReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoveBlacklistReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *RemoveBlacklistReq) XXX_Size() int {
return xxx_messageInfo_RemoveBlacklistReq.Size(m)
}
func (m *RemoveBlacklistReq) XXX_DiscardUnknown() {
xxx_messageInfo_RemoveBlacklistReq.DiscardUnknown(m)
}
var xxx_messageInfo_RemoveBlacklistReq proto.InternalMessageInfo
func (m *RemoveBlacklistReq) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *RemoveBlacklistReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *RemoveBlacklistReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
type GetBlacklistReq struct {
2021-09-22 20:10:38 +08:00
OperationID string `protobuf:"bytes,1,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,2,opt,name=token" json:"token,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetBlacklistReq) Reset() { *m = GetBlacklistReq{} }
func (m *GetBlacklistReq) String() string { return proto.CompactTextString(m) }
func (*GetBlacklistReq) ProtoMessage() {}
func (*GetBlacklistReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{15}
2021-05-26 19:44:38 +08:00
}
func (m *GetBlacklistReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetBlacklistReq.Unmarshal(m, b)
}
func (m *GetBlacklistReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetBlacklistReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *GetBlacklistReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetBlacklistReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *GetBlacklistReq) XXX_Size() int {
return xxx_messageInfo_GetBlacklistReq.Size(m)
}
func (m *GetBlacklistReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetBlacklistReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetBlacklistReq proto.InternalMessageInfo
func (m *GetBlacklistReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *GetBlacklistReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
type GetBlacklistResp struct {
2021-09-22 20:10:38 +08:00
ErrorCode int32 `protobuf:"varint,1,opt,name=errorCode" json:"errorCode,omitempty"`
ErrorMsg string `protobuf:"bytes,2,opt,name=errorMsg" json:"errorMsg,omitempty"`
Data []*UserInfo `protobuf:"bytes,3,rep,name=data" json:"data,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetBlacklistResp) Reset() { *m = GetBlacklistResp{} }
func (m *GetBlacklistResp) String() string { return proto.CompactTextString(m) }
func (*GetBlacklistResp) ProtoMessage() {}
func (*GetBlacklistResp) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{16}
2021-05-26 19:44:38 +08:00
}
func (m *GetBlacklistResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetBlacklistResp.Unmarshal(m, b)
}
func (m *GetBlacklistResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetBlacklistResp.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *GetBlacklistResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetBlacklistResp.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *GetBlacklistResp) XXX_Size() int {
return xxx_messageInfo_GetBlacklistResp.Size(m)
}
func (m *GetBlacklistResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetBlacklistResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetBlacklistResp proto.InternalMessageInfo
func (m *GetBlacklistResp) GetErrorCode() int32 {
if m != nil {
return m.ErrorCode
}
return 0
}
func (m *GetBlacklistResp) GetErrorMsg() string {
if m != nil {
return m.ErrorMsg
}
return ""
}
func (m *GetBlacklistResp) GetData() []*UserInfo {
if m != nil {
return m.Data
}
return nil
}
2021-06-28 15:33:26 +08:00
type IsFriendReq struct {
2021-09-22 20:10:38 +08:00
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
ReceiveUid string `protobuf:"bytes,2,opt,name=receiveUid" json:"receiveUid,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"`
2021-06-28 15:33:26 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IsFriendReq) Reset() { *m = IsFriendReq{} }
func (m *IsFriendReq) String() string { return proto.CompactTextString(m) }
func (*IsFriendReq) ProtoMessage() {}
func (*IsFriendReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{17}
2021-06-28 15:33:26 +08:00
}
func (m *IsFriendReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsFriendReq.Unmarshal(m, b)
}
func (m *IsFriendReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsFriendReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *IsFriendReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsFriendReq.Merge(dst, src)
2021-06-28 15:33:26 +08:00
}
func (m *IsFriendReq) XXX_Size() int {
return xxx_messageInfo_IsFriendReq.Size(m)
}
func (m *IsFriendReq) XXX_DiscardUnknown() {
xxx_messageInfo_IsFriendReq.DiscardUnknown(m)
}
var xxx_messageInfo_IsFriendReq proto.InternalMessageInfo
func (m *IsFriendReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func (m *IsFriendReq) GetReceiveUid() string {
if m != nil {
return m.ReceiveUid
}
return ""
}
func (m *IsFriendReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type IsFriendResp struct {
2021-09-22 20:10:38 +08:00
ErrorCode int32 `protobuf:"varint,1,opt,name=errorCode" json:"errorCode,omitempty"`
ErrorMsg string `protobuf:"bytes,2,opt,name=errorMsg" json:"errorMsg,omitempty"`
ShipType int32 `protobuf:"varint,3,opt,name=shipType" json:"shipType,omitempty"`
2021-06-28 15:33:26 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IsFriendResp) Reset() { *m = IsFriendResp{} }
func (m *IsFriendResp) String() string { return proto.CompactTextString(m) }
func (*IsFriendResp) ProtoMessage() {}
func (*IsFriendResp) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{18}
2021-06-28 15:33:26 +08:00
}
func (m *IsFriendResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsFriendResp.Unmarshal(m, b)
}
func (m *IsFriendResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsFriendResp.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *IsFriendResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsFriendResp.Merge(dst, src)
2021-06-28 15:33:26 +08:00
}
func (m *IsFriendResp) XXX_Size() int {
return xxx_messageInfo_IsFriendResp.Size(m)
}
func (m *IsFriendResp) XXX_DiscardUnknown() {
xxx_messageInfo_IsFriendResp.DiscardUnknown(m)
}
var xxx_messageInfo_IsFriendResp proto.InternalMessageInfo
func (m *IsFriendResp) GetErrorCode() int32 {
if m != nil {
return m.ErrorCode
}
return 0
}
func (m *IsFriendResp) GetErrorMsg() string {
if m != nil {
return m.ErrorMsg
}
return ""
}
func (m *IsFriendResp) GetShipType() int32 {
if m != nil {
return m.ShipType
}
return 0
}
2021-05-26 19:44:38 +08:00
type IsInBlackListReq struct {
2021-09-22 20:10:38 +08:00
SendUid string `protobuf:"bytes,1,opt,name=sendUid" json:"sendUid,omitempty"`
ReceiveUid string `protobuf:"bytes,2,opt,name=receiveUid" json:"receiveUid,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IsInBlackListReq) Reset() { *m = IsInBlackListReq{} }
func (m *IsInBlackListReq) String() string { return proto.CompactTextString(m) }
func (*IsInBlackListReq) ProtoMessage() {}
func (*IsInBlackListReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{19}
2021-05-26 19:44:38 +08:00
}
func (m *IsInBlackListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsInBlackListReq.Unmarshal(m, b)
}
func (m *IsInBlackListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsInBlackListReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *IsInBlackListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsInBlackListReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *IsInBlackListReq) XXX_Size() int {
return xxx_messageInfo_IsInBlackListReq.Size(m)
}
func (m *IsInBlackListReq) XXX_DiscardUnknown() {
xxx_messageInfo_IsInBlackListReq.DiscardUnknown(m)
}
var xxx_messageInfo_IsInBlackListReq proto.InternalMessageInfo
func (m *IsInBlackListReq) GetSendUid() string {
if m != nil {
return m.SendUid
}
return ""
}
func (m *IsInBlackListReq) GetReceiveUid() string {
if m != nil {
return m.ReceiveUid
}
return ""
}
func (m *IsInBlackListReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type IsInBlackListResp struct {
2021-09-22 20:10:38 +08:00
ErrorCode int32 `protobuf:"varint,1,opt,name=errorCode" json:"errorCode,omitempty"`
ErrorMsg string `protobuf:"bytes,2,opt,name=errorMsg" json:"errorMsg,omitempty"`
Response bool `protobuf:"varint,3,opt,name=response" json:"response,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IsInBlackListResp) Reset() { *m = IsInBlackListResp{} }
func (m *IsInBlackListResp) String() string { return proto.CompactTextString(m) }
func (*IsInBlackListResp) ProtoMessage() {}
func (*IsInBlackListResp) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{20}
2021-05-26 19:44:38 +08:00
}
func (m *IsInBlackListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsInBlackListResp.Unmarshal(m, b)
}
func (m *IsInBlackListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsInBlackListResp.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *IsInBlackListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsInBlackListResp.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *IsInBlackListResp) XXX_Size() int {
return xxx_messageInfo_IsInBlackListResp.Size(m)
}
func (m *IsInBlackListResp) XXX_DiscardUnknown() {
xxx_messageInfo_IsInBlackListResp.DiscardUnknown(m)
}
var xxx_messageInfo_IsInBlackListResp proto.InternalMessageInfo
func (m *IsInBlackListResp) GetErrorCode() int32 {
if m != nil {
return m.ErrorCode
}
return 0
}
func (m *IsInBlackListResp) GetErrorMsg() string {
if m != nil {
return m.ErrorMsg
}
return ""
}
func (m *IsInBlackListResp) GetResponse() bool {
if m != nil {
return m.Response
}
return false
}
type DeleteFriendReq struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,3,opt,name=Token" json:"Token,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteFriendReq) Reset() { *m = DeleteFriendReq{} }
func (m *DeleteFriendReq) String() string { return proto.CompactTextString(m) }
func (*DeleteFriendReq) ProtoMessage() {}
func (*DeleteFriendReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{21}
2021-05-26 19:44:38 +08:00
}
func (m *DeleteFriendReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteFriendReq.Unmarshal(m, b)
}
func (m *DeleteFriendReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteFriendReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *DeleteFriendReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteFriendReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *DeleteFriendReq) XXX_Size() int {
return xxx_messageInfo_DeleteFriendReq.Size(m)
}
func (m *DeleteFriendReq) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteFriendReq.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteFriendReq proto.InternalMessageInfo
func (m *DeleteFriendReq) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *DeleteFriendReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *DeleteFriendReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
2021-06-28 15:33:26 +08:00
type AddFriendResponseReq struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
Flag int32 `protobuf:"varint,2,opt,name=flag" json:"flag,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"`
Token string `protobuf:"bytes,4,opt,name=Token" json:"Token,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) Reset() { *m = AddFriendResponseReq{} }
func (m *AddFriendResponseReq) String() string { return proto.CompactTextString(m) }
func (*AddFriendResponseReq) ProtoMessage() {}
func (*AddFriendResponseReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{22}
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddFriendResponseReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddFriendResponseReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2021-09-22 20:10:38 +08:00
func (dst *AddFriendResponseReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddFriendResponseReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) XXX_Size() int {
return xxx_messageInfo_AddFriendResponseReq.Size(m)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) XXX_DiscardUnknown() {
xxx_messageInfo_AddFriendResponseReq.DiscardUnknown(m)
2021-05-26 19:44:38 +08:00
}
2021-06-28 15:33:26 +08:00
var xxx_messageInfo_AddFriendResponseReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) GetUid() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Uid
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) GetFlag() int32 {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Flag
}
return 0
}
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) GetOperationID() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.OperationID
}
return ""
}
2021-06-28 15:33:26 +08:00
func (m *AddFriendResponseReq) GetToken() string {
2021-05-26 19:44:38 +08:00
if m != nil {
return m.Token
}
return ""
}
type SetFriendCommentReq struct {
2021-09-22 20:10:38 +08:00
Uid string `protobuf:"bytes,1,opt,name=uid" json:"uid,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"`
Comment string `protobuf:"bytes,3,opt,name=comment" json:"comment,omitempty"`
Token string `protobuf:"bytes,4,opt,name=token" json:"token,omitempty"`
2021-05-26 19:44:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetFriendCommentReq) Reset() { *m = SetFriendCommentReq{} }
func (m *SetFriendCommentReq) String() string { return proto.CompactTextString(m) }
func (*SetFriendCommentReq) ProtoMessage() {}
func (*SetFriendCommentReq) Descriptor() ([]byte, []int) {
2021-09-26 14:26:45 +08:00
return fileDescriptor_friend_05873114bd399886, []int{23}
2021-05-26 19:44:38 +08:00
}
func (m *SetFriendCommentReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetFriendCommentReq.Unmarshal(m, b)
}
func (m *SetFriendCommentReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetFriendCommentReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *SetFriendCommentReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetFriendCommentReq.Merge(dst, src)
2021-05-26 19:44:38 +08:00
}
func (m *SetFriendCommentReq) XXX_Size() int {
return xxx_messageInfo_SetFriendCommentReq.Size(m)
}
func (m *SetFriendCommentReq) XXX_DiscardUnknown() {
xxx_messageInfo_SetFriendCommentReq.DiscardUnknown(m)
}
var xxx_messageInfo_SetFriendCommentReq proto.InternalMessageInfo
func (m *SetFriendCommentReq) GetUid() string {
if m != nil {
return m.Uid
}
return ""
}
func (m *SetFriendCommentReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
func (m *SetFriendCommentReq) GetComment() string {
if m != nil {
return m.Comment
}
return ""
}
func (m *SetFriendCommentReq) GetToken() string {
if m != nil {
return m.Token
}
return ""
}
func init() {
proto.RegisterType((*CommonResp)(nil), "friend.CommonResp")
2021-06-28 15:33:26 +08:00
proto.RegisterType((*GetFriendsInfoReq)(nil), "friend.GetFriendsInfoReq")
proto.RegisterType((*GetFriendInfoResp)(nil), "friend.GetFriendInfoResp")
proto.RegisterType((*GetFriendData)(nil), "friend.GetFriendData")
2021-05-26 19:44:38 +08:00
proto.RegisterType((*AddFriendReq)(nil), "friend.AddFriendReq")
2021-09-22 20:10:38 +08:00
proto.RegisterType((*ImportFriendReq)(nil), "friend.ImportFriendReq")
2021-09-26 14:26:45 +08:00
proto.RegisterType((*ImportFriendResp)(nil), "friend.ImportFriendResp")
2021-05-26 19:44:38 +08:00
proto.RegisterType((*GetFriendApplyReq)(nil), "friend.GetFriendApplyReq")
proto.RegisterType((*GetFriendApplyResp)(nil), "friend.GetFriendApplyResp")
proto.RegisterType((*ApplyUserInfo)(nil), "friend.ApplyUserInfo")
proto.RegisterType((*GetFriendListReq)(nil), "friend.getFriendListReq")
proto.RegisterType((*GetFriendListResp)(nil), "friend.getFriendListResp")
proto.RegisterType((*UserInfo)(nil), "friend.UserInfo")
proto.RegisterType((*AddBlacklistReq)(nil), "friend.AddBlacklistReq")
proto.RegisterType((*RemoveBlacklistReq)(nil), "friend.RemoveBlacklistReq")
proto.RegisterType((*GetBlacklistReq)(nil), "friend.GetBlacklistReq")
proto.RegisterType((*GetBlacklistResp)(nil), "friend.GetBlacklistResp")
2021-06-28 15:33:26 +08:00
proto.RegisterType((*IsFriendReq)(nil), "friend.IsFriendReq")
proto.RegisterType((*IsFriendResp)(nil), "friend.IsFriendResp")
2021-05-26 19:44:38 +08:00
proto.RegisterType((*IsInBlackListReq)(nil), "friend.IsInBlackListReq")
proto.RegisterType((*IsInBlackListResp)(nil), "friend.IsInBlackListResp")
proto.RegisterType((*DeleteFriendReq)(nil), "friend.DeleteFriendReq")
2021-06-28 15:33:26 +08:00
proto.RegisterType((*AddFriendResponseReq)(nil), "friend.AddFriendResponseReq")
2021-05-26 19:44:38 +08:00
proto.RegisterType((*SetFriendCommentReq)(nil), "friend.SetFriendCommentReq")
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
2021-09-22 20:10:38 +08:00
var _ grpc.ClientConn
2021-05-26 19:44:38 +08:00
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
2021-09-22 20:10:38 +08:00
const _ = grpc.SupportPackageIsVersion4
// Client API for Friend service
2021-05-26 19:44:38 +08:00
type FriendClient interface {
2021-06-28 15:33:26 +08:00
GetFriendsInfo(ctx context.Context, in *GetFriendsInfoReq, opts ...grpc.CallOption) (*GetFriendInfoResp, error)
2021-05-26 19:44:38 +08:00
AddFriend(ctx context.Context, in *AddFriendReq, opts ...grpc.CallOption) (*CommonResp, error)
GetFriendApplyList(ctx context.Context, in *GetFriendApplyReq, opts ...grpc.CallOption) (*GetFriendApplyResp, error)
2021-06-28 15:33:26 +08:00
GetSelfApplyList(ctx context.Context, in *GetFriendApplyReq, opts ...grpc.CallOption) (*GetFriendApplyResp, error)
2021-05-26 19:44:38 +08:00
GetFriendList(ctx context.Context, in *GetFriendListReq, opts ...grpc.CallOption) (*GetFriendListResp, error)
AddBlacklist(ctx context.Context, in *AddBlacklistReq, opts ...grpc.CallOption) (*CommonResp, error)
RemoveBlacklist(ctx context.Context, in *RemoveBlacklistReq, opts ...grpc.CallOption) (*CommonResp, error)
2021-06-28 15:33:26 +08:00
IsFriend(ctx context.Context, in *IsFriendReq, opts ...grpc.CallOption) (*IsFriendResp, error)
2021-05-26 19:44:38 +08:00
IsInBlackList(ctx context.Context, in *IsInBlackListReq, opts ...grpc.CallOption) (*IsInBlackListResp, error)
GetBlacklist(ctx context.Context, in *GetBlacklistReq, opts ...grpc.CallOption) (*GetBlacklistResp, error)
DeleteFriend(ctx context.Context, in *DeleteFriendReq, opts ...grpc.CallOption) (*CommonResp, error)
2021-06-28 15:33:26 +08:00
AddFriendResponse(ctx context.Context, in *AddFriendResponseReq, opts ...grpc.CallOption) (*CommonResp, error)
2021-05-26 19:44:38 +08:00
SetFriendComment(ctx context.Context, in *SetFriendCommentReq, opts ...grpc.CallOption) (*CommonResp, error)
2021-09-26 14:26:45 +08:00
ImportFriend(ctx context.Context, in *ImportFriendReq, opts ...grpc.CallOption) (*ImportFriendResp, error)
2021-05-26 19:44:38 +08:00
}
type friendClient struct {
2021-09-22 20:10:38 +08:00
cc *grpc.ClientConn
2021-05-26 19:44:38 +08:00
}
2021-09-22 20:10:38 +08:00
func NewFriendClient(cc *grpc.ClientConn) FriendClient {
2021-05-26 19:44:38 +08:00
return &friendClient{cc}
}
2021-06-28 15:33:26 +08:00
func (c *friendClient) GetFriendsInfo(ctx context.Context, in *GetFriendsInfoReq, opts ...grpc.CallOption) (*GetFriendInfoResp, error) {
out := new(GetFriendInfoResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/getFriendsInfo", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *friendClient) AddFriend(ctx context.Context, in *AddFriendReq, opts ...grpc.CallOption) (*CommonResp, error) {
out := new(CommonResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/addFriend", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *friendClient) GetFriendApplyList(ctx context.Context, in *GetFriendApplyReq, opts ...grpc.CallOption) (*GetFriendApplyResp, error) {
out := new(GetFriendApplyResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/getFriendApplyList", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-06-28 15:33:26 +08:00
func (c *friendClient) GetSelfApplyList(ctx context.Context, in *GetFriendApplyReq, opts ...grpc.CallOption) (*GetFriendApplyResp, error) {
out := new(GetFriendApplyResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/getSelfApplyList", in, out, c.cc, opts...)
2021-06-28 15:33:26 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-05-26 19:44:38 +08:00
func (c *friendClient) GetFriendList(ctx context.Context, in *GetFriendListReq, opts ...grpc.CallOption) (*GetFriendListResp, error) {
out := new(GetFriendListResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/getFriendList", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *friendClient) AddBlacklist(ctx context.Context, in *AddBlacklistReq, opts ...grpc.CallOption) (*CommonResp, error) {
out := new(CommonResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/addBlacklist", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *friendClient) RemoveBlacklist(ctx context.Context, in *RemoveBlacklistReq, opts ...grpc.CallOption) (*CommonResp, error) {
out := new(CommonResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/removeBlacklist", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-06-28 15:33:26 +08:00
func (c *friendClient) IsFriend(ctx context.Context, in *IsFriendReq, opts ...grpc.CallOption) (*IsFriendResp, error) {
out := new(IsFriendResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/isFriend", in, out, c.cc, opts...)
2021-06-28 15:33:26 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-05-26 19:44:38 +08:00
func (c *friendClient) IsInBlackList(ctx context.Context, in *IsInBlackListReq, opts ...grpc.CallOption) (*IsInBlackListResp, error) {
out := new(IsInBlackListResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/isInBlackList", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *friendClient) GetBlacklist(ctx context.Context, in *GetBlacklistReq, opts ...grpc.CallOption) (*GetBlacklistResp, error) {
out := new(GetBlacklistResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/getBlacklist", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *friendClient) DeleteFriend(ctx context.Context, in *DeleteFriendReq, opts ...grpc.CallOption) (*CommonResp, error) {
out := new(CommonResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/deleteFriend", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-06-28 15:33:26 +08:00
func (c *friendClient) AddFriendResponse(ctx context.Context, in *AddFriendResponseReq, opts ...grpc.CallOption) (*CommonResp, error) {
2021-05-26 19:44:38 +08:00
out := new(CommonResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/addFriendResponse", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *friendClient) SetFriendComment(ctx context.Context, in *SetFriendCommentReq, opts ...grpc.CallOption) (*CommonResp, error) {
out := new(CommonResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/setFriendComment", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-09-26 14:26:45 +08:00
func (c *friendClient) ImportFriend(ctx context.Context, in *ImportFriendReq, opts ...grpc.CallOption) (*ImportFriendResp, error) {
out := new(ImportFriendResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/friend.friend/ImportFriend", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for Friend service
2021-05-26 19:44:38 +08:00
type FriendServer interface {
2021-06-28 15:33:26 +08:00
GetFriendsInfo(context.Context, *GetFriendsInfoReq) (*GetFriendInfoResp, error)
2021-05-26 19:44:38 +08:00
AddFriend(context.Context, *AddFriendReq) (*CommonResp, error)
GetFriendApplyList(context.Context, *GetFriendApplyReq) (*GetFriendApplyResp, error)
2021-06-28 15:33:26 +08:00
GetSelfApplyList(context.Context, *GetFriendApplyReq) (*GetFriendApplyResp, error)
2021-05-26 19:44:38 +08:00
GetFriendList(context.Context, *GetFriendListReq) (*GetFriendListResp, error)
AddBlacklist(context.Context, *AddBlacklistReq) (*CommonResp, error)
RemoveBlacklist(context.Context, *RemoveBlacklistReq) (*CommonResp, error)
2021-06-28 15:33:26 +08:00
IsFriend(context.Context, *IsFriendReq) (*IsFriendResp, error)
2021-05-26 19:44:38 +08:00
IsInBlackList(context.Context, *IsInBlackListReq) (*IsInBlackListResp, error)
GetBlacklist(context.Context, *GetBlacklistReq) (*GetBlacklistResp, error)
DeleteFriend(context.Context, *DeleteFriendReq) (*CommonResp, error)
2021-06-28 15:33:26 +08:00
AddFriendResponse(context.Context, *AddFriendResponseReq) (*CommonResp, error)
2021-05-26 19:44:38 +08:00
SetFriendComment(context.Context, *SetFriendCommentReq) (*CommonResp, error)
2021-09-26 14:26:45 +08:00
ImportFriend(context.Context, *ImportFriendReq) (*ImportFriendResp, error)
2021-05-26 19:44:38 +08:00
}
func RegisterFriendServer(s *grpc.Server, srv FriendServer) {
s.RegisterService(&_Friend_serviceDesc, srv)
}
2021-06-28 15:33:26 +08:00
func _Friend_GetFriendsInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFriendsInfoReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2021-06-28 15:33:26 +08:00
return srv.(FriendServer).GetFriendsInfo(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2021-06-28 15:33:26 +08:00
FullMethod: "/friend.friend/GetFriendsInfo",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2021-06-28 15:33:26 +08:00
return srv.(FriendServer).GetFriendsInfo(ctx, req.(*GetFriendsInfoReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
func _Friend_AddFriend_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AddFriendReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).AddFriend(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/AddFriend",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).AddFriend(ctx, req.(*AddFriendReq))
}
return interceptor(ctx, in, info, handler)
}
func _Friend_GetFriendApplyList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFriendApplyReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).GetFriendApplyList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/GetFriendApplyList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).GetFriendApplyList(ctx, req.(*GetFriendApplyReq))
}
return interceptor(ctx, in, info, handler)
}
2021-06-28 15:33:26 +08:00
func _Friend_GetSelfApplyList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFriendApplyReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).GetSelfApplyList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/GetSelfApplyList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).GetSelfApplyList(ctx, req.(*GetFriendApplyReq))
}
return interceptor(ctx, in, info, handler)
}
2021-05-26 19:44:38 +08:00
func _Friend_GetFriendList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFriendListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).GetFriendList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/GetFriendList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).GetFriendList(ctx, req.(*GetFriendListReq))
}
return interceptor(ctx, in, info, handler)
}
func _Friend_AddBlacklist_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AddBlacklistReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).AddBlacklist(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/AddBlacklist",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).AddBlacklist(ctx, req.(*AddBlacklistReq))
}
return interceptor(ctx, in, info, handler)
}
func _Friend_RemoveBlacklist_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RemoveBlacklistReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).RemoveBlacklist(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/RemoveBlacklist",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).RemoveBlacklist(ctx, req.(*RemoveBlacklistReq))
}
return interceptor(ctx, in, info, handler)
}
2021-06-28 15:33:26 +08:00
func _Friend_IsFriend_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(IsFriendReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).IsFriend(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/IsFriend",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).IsFriend(ctx, req.(*IsFriendReq))
}
return interceptor(ctx, in, info, handler)
}
2021-05-26 19:44:38 +08:00
func _Friend_IsInBlackList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(IsInBlackListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).IsInBlackList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/IsInBlackList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).IsInBlackList(ctx, req.(*IsInBlackListReq))
}
return interceptor(ctx, in, info, handler)
}
func _Friend_GetBlacklist_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetBlacklistReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).GetBlacklist(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/GetBlacklist",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).GetBlacklist(ctx, req.(*GetBlacklistReq))
}
return interceptor(ctx, in, info, handler)
}
func _Friend_DeleteFriend_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteFriendReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).DeleteFriend(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/DeleteFriend",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).DeleteFriend(ctx, req.(*DeleteFriendReq))
}
return interceptor(ctx, in, info, handler)
}
2021-06-28 15:33:26 +08:00
func _Friend_AddFriendResponse_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AddFriendResponseReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2021-06-28 15:33:26 +08:00
return srv.(FriendServer).AddFriendResponse(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2021-06-28 15:33:26 +08:00
FullMethod: "/friend.friend/AddFriendResponse",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2021-06-28 15:33:26 +08:00
return srv.(FriendServer).AddFriendResponse(ctx, req.(*AddFriendResponseReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
func _Friend_SetFriendComment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetFriendCommentReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).SetFriendComment(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/SetFriendComment",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).SetFriendComment(ctx, req.(*SetFriendCommentReq))
}
return interceptor(ctx, in, info, handler)
}
2021-09-22 20:10:38 +08:00
func _Friend_ImportFriend_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ImportFriendReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).ImportFriend(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/ImportFriend",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).ImportFriend(ctx, req.(*ImportFriendReq))
}
return interceptor(ctx, in, info, handler)
}
2021-05-26 19:44:38 +08:00
var _Friend_serviceDesc = grpc.ServiceDesc{
ServiceName: "friend.friend",
HandlerType: (*FriendServer)(nil),
Methods: []grpc.MethodDesc{
{
2021-06-28 15:33:26 +08:00
MethodName: "getFriendsInfo",
Handler: _Friend_GetFriendsInfo_Handler,
2021-05-26 19:44:38 +08:00
},
{
MethodName: "addFriend",
Handler: _Friend_AddFriend_Handler,
},
{
MethodName: "getFriendApplyList",
Handler: _Friend_GetFriendApplyList_Handler,
},
2021-06-28 15:33:26 +08:00
{
MethodName: "getSelfApplyList",
Handler: _Friend_GetSelfApplyList_Handler,
},
2021-05-26 19:44:38 +08:00
{
MethodName: "getFriendList",
Handler: _Friend_GetFriendList_Handler,
},
{
MethodName: "addBlacklist",
Handler: _Friend_AddBlacklist_Handler,
},
{
MethodName: "removeBlacklist",
Handler: _Friend_RemoveBlacklist_Handler,
},
2021-06-28 15:33:26 +08:00
{
MethodName: "isFriend",
Handler: _Friend_IsFriend_Handler,
},
2021-05-26 19:44:38 +08:00
{
MethodName: "isInBlackList",
Handler: _Friend_IsInBlackList_Handler,
},
{
MethodName: "getBlacklist",
Handler: _Friend_GetBlacklist_Handler,
},
{
MethodName: "deleteFriend",
Handler: _Friend_DeleteFriend_Handler,
},
{
2021-06-28 15:33:26 +08:00
MethodName: "addFriendResponse",
Handler: _Friend_AddFriendResponse_Handler,
2021-05-26 19:44:38 +08:00
},
{
MethodName: "setFriendComment",
Handler: _Friend_SetFriendComment_Handler,
},
2021-09-22 20:10:38 +08:00
{
MethodName: "ImportFriend",
Handler: _Friend_ImportFriend_Handler,
},
2021-05-26 19:44:38 +08:00
},
Streams: []grpc.StreamDesc{},
Metadata: "friend/friend.proto",
}
2021-09-22 20:10:38 +08:00
2021-09-26 14:26:45 +08:00
func init() { proto.RegisterFile("friend/friend.proto", fileDescriptor_friend_05873114bd399886) }
2021-09-22 20:10:38 +08:00
2021-09-26 14:26:45 +08:00
var fileDescriptor_friend_05873114bd399886 = []byte{
// 1011 bytes of a gzipped FileDescriptorProto
2021-09-22 20:10:38 +08:00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xcd, 0x6e, 0xdb, 0x46,
2021-09-26 14:26:45 +08:00
0x10, 0x86, 0x48, 0xc9, 0x96, 0x46, 0x52, 0x24, 0xaf, 0xdd, 0x96, 0x65, 0x83, 0x42, 0x20, 0x72,
0x48, 0x2f, 0x29, 0xe0, 0x22, 0xa7, 0x9c, 0x14, 0xbb, 0x0e, 0xd4, 0x34, 0x08, 0xc0, 0xd8, 0x97,
0x16, 0x2d, 0x40, 0x8b, 0x23, 0x85, 0x08, 0xff, 0xc2, 0x65, 0x12, 0xfb, 0xd4, 0x63, 0xcf, 0x7d,
0x94, 0xbe, 0x59, 0x1f, 0xa1, 0xd8, 0x59, 0x92, 0xbb, 0xfc, 0x71, 0x1a, 0x54, 0x4e, 0x72, 0x32,
0x67, 0x76, 0x3d, 0x3b, 0xdf, 0xcc, 0x7c, 0x33, 0x23, 0x38, 0xdc, 0x64, 0x01, 0xc6, 0xfe, 0xf7,
0xf2, 0xcf, 0x83, 0x34, 0x4b, 0xf2, 0x84, 0xed, 0x49, 0xc9, 0x39, 0x03, 0x38, 0x49, 0xa2, 0x28,
0x89, 0x5d, 0xe4, 0x29, 0xbb, 0x0b, 0x23, 0xcc, 0xb2, 0x24, 0x3b, 0x49, 0x7c, 0xb4, 0x7a, 0x8b,
0xde, 0xfd, 0x81, 0xab, 0x14, 0xcc, 0x86, 0x21, 0x09, 0xcf, 0xf8, 0xd6, 0x32, 0x16, 0xbd, 0xfb,
0x23, 0xb7, 0x92, 0x9d, 0xdf, 0xe0, 0xe0, 0x09, 0xe6, 0x67, 0x64, 0x94, 0xaf, 0xe2, 0x4d, 0xe2,
0xe2, 0x6b, 0x36, 0x07, 0xf3, 0x4d, 0xe0, 0x93, 0xa1, 0x91, 0x2b, 0x3e, 0xd9, 0x02, 0xc6, 0xcf,
0x53, 0xcc, 0xbc, 0x3c, 0x48, 0xe2, 0xd5, 0x69, 0x61, 0x45, 0x57, 0xb1, 0x23, 0x18, 0x9c, 0x27,
0xaf, 0x30, 0xb6, 0x4c, 0x3a, 0x93, 0x82, 0x73, 0xa5, 0x99, 0x97, 0xd6, 0x77, 0xf1, 0x96, 0x7d,
0x07, 0xfd, 0x53, 0x2f, 0xf7, 0xe8, 0x8d, 0xf1, 0xf1, 0x17, 0x0f, 0x8a, 0xd0, 0x54, 0x4f, 0x88,
0x43, 0x97, 0xae, 0x38, 0x7f, 0x19, 0x30, 0xad, 0xe9, 0x3b, 0x50, 0x31, 0xe8, 0x07, 0xeb, 0x24,
0x2e, 0x9e, 0xa1, 0x6f, 0xa1, 0x8b, 0xbd, 0x08, 0x0b, 0x18, 0xf4, 0xcd, 0xbe, 0x84, 0xbd, 0x2d,
0xc6, 0x3e, 0x66, 0x56, 0x9f, 0xbc, 0x2d, 0x24, 0xa1, 0x8f, 0x92, 0xcb, 0x20, 0x44, 0x6b, 0x40,
0xb7, 0x0b, 0x49, 0xc4, 0xe2, 0x32, 0xc8, 0xf2, 0x97, 0xd6, 0x9e, 0x8c, 0x05, 0x09, 0x42, 0x8b,
0x91, 0x17, 0x84, 0xd6, 0xbe, 0xd4, 0x92, 0xc0, 0xee, 0x80, 0x81, 0x57, 0xd6, 0x90, 0x54, 0x06,
0x5e, 0x31, 0x0b, 0xf6, 0xd7, 0x49, 0x14, 0x61, 0x9c, 0x5b, 0x23, 0x52, 0x96, 0xa2, 0x08, 0x4c,
0xc0, 0x25, 0x1e, 0x0b, 0xc8, 0x8f, 0x4a, 0x66, 0xf7, 0x60, 0x1a, 0xf0, 0x55, 0xfc, 0x38, 0xf4,
0xd6, 0xaf, 0x7e, 0x0e, 0x78, 0x6e, 0x8d, 0xe9, 0x42, 0x5d, 0xe9, 0x5c, 0xc1, 0x64, 0xe9, 0xfb,
0xf2, 0x5f, 0x6e, 0x35, 0xcf, 0xec, 0x5b, 0x00, 0x17, 0x5f, 0x3f, 0x43, 0xce, 0xbd, 0x2d, 0x52,
0x94, 0x46, 0xae, 0xa6, 0x71, 0xfe, 0x80, 0xd9, 0x2a, 0x4a, 0x93, 0x2c, 0x57, 0x8f, 0x5b, 0xb0,
0xff, 0x26, 0xf0, 0xc9, 0xd9, 0xde, 0xc2, 0x14, 0x40, 0x0b, 0xf1, 0x7f, 0x3b, 0x61, 0xc3, 0xf0,
0xf9, 0xbb, 0x18, 0xb3, 0x8b, 0xc0, 0x2f, 0x5c, 0xa8, 0x64, 0x27, 0x84, 0x79, 0xdd, 0x01, 0x9e,
0xb2, 0x63, 0x80, 0x75, 0xc5, 0x21, 0x8a, 0xc2, 0xf8, 0x98, 0x95, 0x35, 0xa5, 0xd8, 0xe5, 0x6a,
0xb7, 0x44, 0xa0, 0x37, 0x5e, 0x10, 0xa2, 0x7f, 0x51, 0xf8, 0x6e, 0x90, 0xef, 0x75, 0xa5, 0xf3,
0x54, 0x2b, 0xfb, 0x65, 0x9a, 0x86, 0xd7, 0x02, 0x70, 0x03, 0x56, 0xef, 0x3d, 0xb0, 0x0c, 0x9d,
0x43, 0xd7, 0xc0, 0x9a, 0xc6, 0x76, 0x25, 0x91, 0x2f, 0x48, 0xd4, 0x5f, 0x98, 0x3a, 0x89, 0xc8,
0xf4, 0x05, 0xc7, 0x8c, 0x78, 0x4a, 0x57, 0x9c, 0x3f, 0x0d, 0x98, 0xd6, 0xf4, 0xdd, 0x24, 0x22,
0xc2, 0x18, 0x1a, 0x61, 0x4a, 0x62, 0x99, 0x1a, 0xb1, 0x3e, 0x25, 0x89, 0x18, 0xf4, 0x37, 0xa1,
0xb7, 0x25, 0x06, 0x0d, 0x5c, 0xfa, 0x16, 0x01, 0xf3, 0x04, 0x94, 0xf3, 0x20, 0x42, 0xe2, 0xcf,
0xc8, 0x55, 0x0a, 0x51, 0xc0, 0x99, 0x2a, 0xe0, 0xb1, 0x2c, 0x60, 0xa5, 0x71, 0x7e, 0x82, 0xf9,
0xb6, 0x4c, 0x82, 0x48, 0xf1, 0x2e, 0x09, 0xe5, 0x70, 0xd0, 0xb0, 0xb5, 0x53, 0x3e, 0xef, 0x15,
0xf9, 0x34, 0x29, 0x9f, 0xf3, 0x32, 0x9f, 0x8d, 0x54, 0xfe, 0xd3, 0x83, 0xe1, 0x07, 0x64, 0xd1,
0xec, 0xc8, 0xa2, 0xf1, 0x99, 0xb2, 0x78, 0x73, 0x2b, 0x6c, 0xb5, 0x3b, 0xe8, 0x6a, 0x77, 0xef,
0x60, 0xb6, 0xf4, 0x7d, 0x92, 0xc3, 0x22, 0x65, 0xb7, 0xd7, 0xf1, 0xde, 0xd7, 0x6c, 0x7e, 0x07,
0xe6, 0x62, 0x94, 0xbc, 0xc5, 0x8f, 0xf3, 0xb6, 0xb3, 0x82, 0xd9, 0x13, 0xcc, 0x6b, 0xc6, 0x3f,
0xa8, 0x16, 0x73, 0xbd, 0x16, 0x49, 0x70, 0x32, 0x98, 0xd7, 0x4d, 0x7d, 0x82, 0x52, 0x44, 0x18,
0xaf, 0xb8, 0x1a, 0x04, 0x95, 0x63, 0x3d, 0xcd, 0x31, 0x49, 0xc8, 0x35, 0x06, 0x6f, 0x51, 0x44,
0xd8, 0x28, 0x09, 0x59, 0x6a, 0x9a, 0x80, 0xcd, 0x16, 0x60, 0xc7, 0x87, 0x89, 0x7a, 0x66, 0x27,
0x58, 0x36, 0x0c, 0xf9, 0xcb, 0x20, 0x3d, 0xbf, 0x4e, 0x25, 0x41, 0x06, 0x6e, 0x25, 0x3b, 0x31,
0xcc, 0x57, 0x7a, 0xd5, 0x15, 0xa3, 0x8d, 0x63, 0x2c, 0xa6, 0x41, 0x81, 0xa9, 0x14, 0x6f, 0x01,
0x55, 0x00, 0x07, 0x8d, 0xf7, 0x76, 0x85, 0x96, 0x21, 0x4f, 0x93, 0x98, 0x4b, 0x68, 0x43, 0xb7,
0x92, 0x9d, 0x5f, 0x61, 0x76, 0x8a, 0x21, 0xe6, 0xf8, 0x11, 0x36, 0x06, 0x27, 0x87, 0x23, 0x6d,
0x17, 0x91, 0x2f, 0x76, 0xbf, 0x50, 0x36, 0x73, 0x43, 0x6b, 0xe6, 0xff, 0x19, 0x27, 0xf5, 0x6a,
0xbf, 0x3e, 0x4b, 0x0f, 0x5f, 0x94, 0xad, 0xf7, 0x44, 0x36, 0x93, 0x1b, 0x61, 0x25, 0x6d, 0x58,
0x9a, 0x4a, 0xef, 0x4e, 0x66, 0xbd, 0x3b, 0x55, 0x05, 0xdd, 0xd7, 0x0a, 0xfa, 0xf8, 0xef, 0x7d,
0x28, 0x96, 0x77, 0x76, 0x06, 0x77, 0xb6, 0xb5, 0xa5, 0x9b, 0x7d, 0xdd, 0x5a, 0x65, 0xcb, 0x65,
0xdc, 0x6e, 0x1f, 0x55, 0x8b, 0xf4, 0x43, 0x18, 0x79, 0x65, 0x0c, 0xd9, 0x51, 0x35, 0xc8, 0xb5,
0x15, 0xcf, 0xee, 0xd8, 0x67, 0xd8, 0x53, 0x60, 0xdb, 0xda, 0x42, 0x41, 0x5b, 0x57, 0xfb, 0x9d,
0x72, 0x73, 0xb1, 0xed, 0x9b, 0x8e, 0x78, 0xca, 0x56, 0x34, 0x18, 0x5f, 0x60, 0xb8, 0xd9, 0xd9,
0xd4, 0x29, 0x4c, 0x6b, 0x73, 0x91, 0x59, 0xe5, 0xe5, 0xe6, 0xe8, 0x55, 0x41, 0x69, 0x0f, 0xd2,
0x47, 0x30, 0xf1, 0xb4, 0xae, 0xcf, 0xbe, 0xd2, 0xe2, 0xa2, 0xb7, 0xcc, 0xce, 0xd0, 0x2c, 0x61,
0x96, 0xd5, 0x3b, 0x37, 0xab, 0x3c, 0x6e, 0xb7, 0xf4, 0x4e, 0x13, 0x0f, 0xd5, 0x9a, 0xce, 0x0e,
0xcb, 0x73, 0xad, 0xdf, 0xd9, 0x47, 0x6d, 0xa5, 0x04, 0x5f, 0x9b, 0x5e, 0x0a, 0x7c, 0xb3, 0xbd,
0x28, 0xf0, 0xed, 0x46, 0xb0, 0x84, 0xc9, 0x56, 0x6b, 0xe7, 0x0a, 0x7c, 0x63, 0x5e, 0xd8, 0x56,
0xf7, 0x81, 0x8c, 0x9f, 0xaf, 0xb1, 0x5e, 0x99, 0x68, 0xf4, 0x82, 0x4e, 0xf0, 0x3f, 0xc2, 0x81,
0xd7, 0x64, 0x35, 0xbb, 0xdb, 0x51, 0x99, 0x15, 0xe1, 0x3b, 0xcd, 0x9c, 0xc0, 0x9c, 0x37, 0x68,
0xca, 0xbe, 0x29, 0xef, 0x75, 0x10, 0xf8, 0x86, 0x5c, 0x4e, 0xf4, 0x95, 0x5f, 0x01, 0x69, 0xfc,
0x12, 0x51, 0xb1, 0x68, 0xfe, 0x42, 0x78, 0x3c, 0xfb, 0x65, 0x2a, 0x8f, 0x1e, 0xc9, 0x3f, 0x97,
0x7b, 0xf4, 0x2b, 0xfc, 0x87, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x85, 0x59, 0x8f, 0x67, 0x9c,
0x0f, 0x00, 0x00,
2021-09-22 20:10:38 +08:00
}