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

1861 lines
67 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
2023-01-04 11:28:52 +08:00
package friend // import "Open_IM/pkg/proto/friend"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import sdk_ws "Open_IM/pkg/proto/sdk_ws"
2021-05-26 19:44:38 +08:00
import (
2023-01-04 11:28:52 +08:00
context "golang.org/x/net/context"
2021-05-26 19:44:38 +08:00
grpc "google.golang.org/grpc"
)
2023-01-04 11:28:52 +08:00
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
2021-05-26 19:44:38 +08:00
2023-01-04 11:28:52 +08:00
// 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.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
2021-05-26 19:44:38 +08:00
2021-12-23 17:22:49 +08:00
type GetFriendsInfoReq struct {
2023-01-30 21:51:20 +08:00
OwnerUserID string `protobuf:"bytes,1,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
FriendUserIDs []string `protobuf:"bytes,2,rep,name=friendUserIDs" json:"friendUserIDs,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +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) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{0}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +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
}
2023-01-04 11:28:52 +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
}
2023-01-04 11:28:52 +08:00
func (dst *GetFriendsInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendsInfoReq.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetFriendsInfoReq) XXX_Size() int {
return xxx_messageInfo_GetFriendsInfoReq.Size(m)
}
func (m *GetFriendsInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendsInfoReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetFriendsInfoReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFriendsInfoReq) GetOwnerUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.OwnerUserID
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsInfoReq) GetFriendUserIDs() []string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.FriendUserIDs
2023-01-16 16:02:56 +08:00
}
2023-01-29 19:47:13 +08:00
return nil
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
type GetFriendsInfoResp struct {
2023-01-31 09:59:15 +08:00
FriendsInfo []*sdk_ws.FriendInfo `protobuf:"bytes,1,rep,name=friendsInfo" json:"friendsInfo,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-29 19:47:13 +08:00
func (m *GetFriendsInfoResp) Reset() { *m = GetFriendsInfoResp{} }
func (m *GetFriendsInfoResp) String() string { return proto.CompactTextString(m) }
func (*GetFriendsInfoResp) ProtoMessage() {}
func (*GetFriendsInfoResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{1}
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFriendsInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendsInfoResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFriendsInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendsInfoResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (dst *GetFriendsInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendsInfoResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFriendsInfoResp) XXX_Size() int {
return xxx_messageInfo_GetFriendsInfoResp.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFriendsInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendsInfoResp.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-05-26 19:44:38 +08:00
2023-01-29 19:47:13 +08:00
var xxx_messageInfo_GetFriendsInfoResp proto.InternalMessageInfo
2023-01-04 11:28:52 +08:00
2023-01-31 09:59:15 +08:00
func (m *GetFriendsInfoResp) GetFriendsInfo() []*sdk_ws.FriendInfo {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-31 09:59:15 +08:00
return m.FriendsInfo
2021-05-26 19:44:38 +08:00
}
2021-12-23 17:22:49 +08:00
return nil
2021-05-26 19:44:38 +08:00
}
type AddFriendReq struct {
2023-01-29 19:47:13 +08:00
FromUserID string `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
ToUserID string `protobuf:"bytes,2,opt,name=toUserID" json:"toUserID,omitempty"`
ReqMsg string `protobuf:"bytes,3,opt,name=reqMsg" json:"reqMsg,omitempty"`
2023-01-30 21:47:29 +08:00
Ex string `protobuf:"bytes,4,opt,name=ex" json:"ex,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *AddFriendReq) Reset() { *m = AddFriendReq{} }
func (m *AddFriendReq) String() string { return proto.CompactTextString(m) }
func (*AddFriendReq) ProtoMessage() {}
func (*AddFriendReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{2}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddFriendReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddFriendReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddFriendReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddFriendReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *AddFriendReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddFriendReq.Merge(dst, src)
}
func (m *AddFriendReq) XXX_Size() int {
return xxx_messageInfo_AddFriendReq.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddFriendReq) XXX_DiscardUnknown() {
xxx_messageInfo_AddFriendReq.DiscardUnknown(m)
}
var xxx_messageInfo_AddFriendReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-29 19:47:13 +08:00
func (m *AddFriendReq) GetFromUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.FromUserID
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-29 19:47:13 +08:00
func (m *AddFriendReq) GetToUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.ToUserID
2023-01-16 16:02:56 +08:00
}
return ""
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddFriendReq) GetReqMsg() string {
if m != nil {
return m.ReqMsg
2021-05-26 19:44:38 +08:00
}
return ""
}
2023-01-30 21:47:29 +08:00
func (m *AddFriendReq) GetEx() string {
if m != nil {
return m.Ex
}
return ""
}
2021-12-26 18:47:11 +08:00
type AddFriendResp struct {
2023-01-29 19:47:13 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-26 18:47:11 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *AddFriendResp) Reset() { *m = AddFriendResp{} }
func (m *AddFriendResp) String() string { return proto.CompactTextString(m) }
func (*AddFriendResp) ProtoMessage() {}
func (*AddFriendResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{3}
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddFriendResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddFriendResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddFriendResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddFriendResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *AddFriendResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddFriendResp.Merge(dst, src)
}
func (m *AddFriendResp) XXX_Size() int {
return xxx_messageInfo_AddFriendResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddFriendResp) XXX_DiscardUnknown() {
xxx_messageInfo_AddFriendResp.DiscardUnknown(m)
}
var xxx_messageInfo_AddFriendResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2021-09-22 20:10:38 +08:00
type ImportFriendReq struct {
2023-01-30 21:51:20 +08:00
OwnerUserID string `protobuf:"bytes,1,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
FriendUserIDs []string `protobuf:"bytes,2,rep,name=friendUserIDs" json:"friendUserIDs,omitempty"`
2023-01-04 11:28:52 +08:00
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) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{4}
2021-09-22 20:10:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *ImportFriendReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ImportFriendReq.Unmarshal(m, b)
2021-09-22 20:10:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *ImportFriendReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ImportFriendReq.Marshal(b, m, deterministic)
2021-09-22 20:10:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *ImportFriendReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_ImportFriendReq.Merge(dst, src)
2021-09-22 20:10:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *ImportFriendReq) XXX_Size() int {
return xxx_messageInfo_ImportFriendReq.Size(m)
}
func (m *ImportFriendReq) XXX_DiscardUnknown() {
xxx_messageInfo_ImportFriendReq.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-09-22 20:10:38 +08:00
2023-01-04 11:28:52 +08:00
var xxx_messageInfo_ImportFriendReq proto.InternalMessageInfo
2023-01-30 21:51:20 +08:00
func (m *ImportFriendReq) GetOwnerUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.OwnerUserID
2021-09-22 20:10:38 +08:00
}
2023-01-30 21:51:20 +08:00
return ""
2021-09-22 20:10:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *ImportFriendReq) GetFriendUserIDs() []string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.FriendUserIDs
2021-09-22 20:10:38 +08:00
}
2023-01-30 21:51:20 +08:00
return nil
2021-09-22 20:10:38 +08:00
}
2023-01-16 16:02:56 +08:00
type ImportFriendResp struct {
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-29 16:17:55 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *ImportFriendResp) Reset() { *m = ImportFriendResp{} }
func (m *ImportFriendResp) String() string { return proto.CompactTextString(m) }
func (*ImportFriendResp) ProtoMessage() {}
func (*ImportFriendResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{5}
2021-09-26 14:26:45 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *ImportFriendResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ImportFriendResp.Unmarshal(m, b)
2021-09-26 14:26:45 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *ImportFriendResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ImportFriendResp.Marshal(b, m, deterministic)
2021-09-26 14:26:45 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *ImportFriendResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_ImportFriendResp.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
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
2021-09-26 14:26:45 +08:00
2023-01-30 21:51:20 +08:00
type GetToFriendsApplyReq struct {
2023-01-29 19:47:13 +08:00
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
Pagination *sdk_ws.RequestPagination `protobuf:"bytes,2,opt,name=pagination" json:"pagination,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyReq) Reset() { *m = GetToFriendsApplyReq{} }
func (m *GetToFriendsApplyReq) String() string { return proto.CompactTextString(m) }
func (*GetToFriendsApplyReq) ProtoMessage() {}
func (*GetToFriendsApplyReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{6}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetToFriendsApplyReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetToFriendsApplyReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *GetToFriendsApplyReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetToFriendsApplyReq.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyReq) XXX_Size() int {
return xxx_messageInfo_GetToFriendsApplyReq.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetToFriendsApplyReq.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_GetToFriendsApplyReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyReq) GetUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.UserID
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyReq) GetPagination() *sdk_ws.RequestPagination {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.Pagination
2023-01-16 16:02:56 +08:00
}
2023-01-29 19:47:13 +08:00
return nil
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
type GetToFriendsApplyResp struct {
FriendRequests []*sdk_ws.FriendRequest `protobuf:"bytes,1,rep,name=FriendRequests" json:"FriendRequests,omitempty"`
2023-01-29 19:47:13 +08:00
Total int32 `protobuf:"varint,2,opt,name=total" json:"total,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyResp) Reset() { *m = GetToFriendsApplyResp{} }
func (m *GetToFriendsApplyResp) String() string { return proto.CompactTextString(m) }
func (*GetToFriendsApplyResp) ProtoMessage() {}
func (*GetToFriendsApplyResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{7}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetToFriendsApplyResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetToFriendsApplyResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *GetToFriendsApplyResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetToFriendsApplyResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyResp) XXX_Size() int {
return xxx_messageInfo_GetToFriendsApplyResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetToFriendsApplyResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_GetToFriendsApplyResp proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyResp) GetFriendRequests() []*sdk_ws.FriendRequest {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.FriendRequests
2021-05-26 19:44:38 +08:00
}
2021-12-23 17:22:49 +08:00
return nil
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetToFriendsApplyResp) GetTotal() int32 {
2023-01-29 19:47:13 +08:00
if m != nil {
return m.Total
}
return 0
}
2023-01-30 21:51:20 +08:00
type GetFriendsReq struct {
2023-01-29 19:47:13 +08:00
Pagination *sdk_ws.RequestPagination `protobuf:"bytes,1,opt,name=pagination" json:"pagination,omitempty"`
UserID string `protobuf:"bytes,2,opt,name=userID" json:"userID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFriendsReq) Reset() { *m = GetFriendsReq{} }
func (m *GetFriendsReq) String() string { return proto.CompactTextString(m) }
func (*GetFriendsReq) ProtoMessage() {}
func (*GetFriendsReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{8}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendsReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendsReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *GetFriendsReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendsReq.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsReq) XXX_Size() int {
return xxx_messageInfo_GetFriendsReq.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendsReq.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_GetFriendsReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFriendsReq) GetPagination() *sdk_ws.RequestPagination {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.Pagination
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
return nil
2023-01-16 16:02:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsReq) GetUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.UserID
2023-01-16 16:02:56 +08:00
}
return ""
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
type GetFriendsResp struct {
FriendsInfo []*sdk_ws.FriendInfo `protobuf:"bytes,1,rep,name=FriendsInfo" json:"FriendsInfo,omitempty"`
2023-01-29 19:47:13 +08:00
Total int32 `protobuf:"varint,2,opt,name=total" json:"total,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFriendsResp) Reset() { *m = GetFriendsResp{} }
func (m *GetFriendsResp) String() string { return proto.CompactTextString(m) }
func (*GetFriendsResp) ProtoMessage() {}
func (*GetFriendsResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{9}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendsResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendsResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *GetFriendsResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendsResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsResp) XXX_Size() int {
return xxx_messageInfo_GetFriendsResp.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendsResp.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_GetFriendsResp proto.InternalMessageInfo
2023-01-04 11:28:52 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFriendsResp) GetFriendsInfo() []*sdk_ws.FriendInfo {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.FriendsInfo
2021-05-26 19:44:38 +08:00
}
return nil
}
2023-01-30 21:51:20 +08:00
func (m *GetFriendsResp) GetTotal() int32 {
2023-01-29 19:47:13 +08:00
if m != nil {
return m.Total
}
return 0
}
2023-01-30 21:51:20 +08:00
type AddBlackReq struct {
OwnerUserID string `protobuf:"bytes,1,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
BlackUserID string `protobuf:"bytes,2,opt,name=blackUserID" json:"blackUserID,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *AddBlackReq) Reset() { *m = AddBlackReq{} }
func (m *AddBlackReq) String() string { return proto.CompactTextString(m) }
func (*AddBlackReq) ProtoMessage() {}
func (*AddBlackReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{10}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddBlackReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddBlackReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *AddBlackReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddBlackReq.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackReq) XXX_Size() int {
return xxx_messageInfo_AddBlackReq.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackReq) XXX_DiscardUnknown() {
xxx_messageInfo_AddBlackReq.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_AddBlackReq proto.InternalMessageInfo
2023-01-04 11:28:52 +08:00
2023-01-30 21:51:20 +08:00
func (m *AddBlackReq) GetOwnerUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.OwnerUserID
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackReq) GetBlackUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.BlackUserID
2023-01-16 16:02:56 +08:00
}
return ""
2021-09-22 20:10:38 +08:00
}
2023-01-30 21:51:20 +08:00
type AddBlackResp struct {
2023-01-16 16:02:56 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-26 18:47:11 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *AddBlackResp) Reset() { *m = AddBlackResp{} }
func (m *AddBlackResp) String() string { return proto.CompactTextString(m) }
func (*AddBlackResp) ProtoMessage() {}
func (*AddBlackResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{11}
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddBlackResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddBlackResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *AddBlackResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddBlackResp.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackResp) XXX_Size() int {
return xxx_messageInfo_AddBlackResp.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *AddBlackResp) XXX_DiscardUnknown() {
xxx_messageInfo_AddBlackResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_AddBlackResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2023-01-30 21:51:20 +08:00
type RemoveBlackReq struct {
OwnerUserID string `protobuf:"bytes,1,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
BlackUserID string `protobuf:"bytes,2,opt,name=blackUserID" json:"blackUserID,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *RemoveBlackReq) Reset() { *m = RemoveBlackReq{} }
func (m *RemoveBlackReq) String() string { return proto.CompactTextString(m) }
func (*RemoveBlackReq) ProtoMessage() {}
func (*RemoveBlackReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{12}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RemoveBlackReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveBlackReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RemoveBlackReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoveBlackReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *RemoveBlackReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoveBlackReq.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RemoveBlackReq) XXX_Size() int {
return xxx_messageInfo_RemoveBlackReq.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RemoveBlackReq) XXX_DiscardUnknown() {
xxx_messageInfo_RemoveBlackReq.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_RemoveBlackReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
func (m *RemoveBlackReq) GetOwnerUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.OwnerUserID
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-30 21:51:20 +08:00
func (m *RemoveBlackReq) GetBlackUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.BlackUserID
2023-01-16 16:02:56 +08:00
}
return ""
2021-05-26 19:44:38 +08:00
}
2023-01-31 09:59:15 +08:00
type RemoveBlackResp struct {
2023-01-16 16:02:56 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-26 18:47:11 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-31 09:59:15 +08:00
func (m *RemoveBlackResp) Reset() { *m = RemoveBlackResp{} }
func (m *RemoveBlackResp) String() string { return proto.CompactTextString(m) }
func (*RemoveBlackResp) ProtoMessage() {}
func (*RemoveBlackResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{13}
2021-12-26 18:47:11 +08:00
}
2023-01-31 09:59:15 +08:00
func (m *RemoveBlackResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveBlackResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-31 09:59:15 +08:00
func (m *RemoveBlackResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoveBlackResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-31 09:59:15 +08:00
func (dst *RemoveBlackResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoveBlackResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-31 09:59:15 +08:00
func (m *RemoveBlackResp) XXX_Size() int {
return xxx_messageInfo_RemoveBlackResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-31 09:59:15 +08:00
func (m *RemoveBlackResp) XXX_DiscardUnknown() {
xxx_messageInfo_RemoveBlackResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-31 09:59:15 +08:00
var xxx_messageInfo_RemoveBlackResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2023-01-30 21:51:20 +08:00
type GetBlacksReq struct {
2023-01-29 19:47:13 +08:00
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
Pagination *sdk_ws.RequestPagination `protobuf:"bytes,2,opt,name=pagination" json:"pagination,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetBlacksReq) Reset() { *m = GetBlacksReq{} }
func (m *GetBlacksReq) String() string { return proto.CompactTextString(m) }
func (*GetBlacksReq) ProtoMessage() {}
func (*GetBlacksReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{14}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetBlacksReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetBlacksReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *GetBlacksReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetBlacksReq.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksReq) XXX_Size() int {
return xxx_messageInfo_GetBlacksReq.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetBlacksReq.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_GetBlacksReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetBlacksReq) GetUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.UserID
2023-01-16 16:02:56 +08:00
}
return ""
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksReq) GetPagination() *sdk_ws.RequestPagination {
2023-01-29 19:47:13 +08:00
if m != nil {
return m.Pagination
}
return nil
}
2023-01-30 21:51:20 +08:00
type GetBlacksResp struct {
2023-01-31 13:37:35 +08:00
Blacks []*sdk_ws.BlackInfo `protobuf:"bytes,1,rep,name=blacks" json:"blacks,omitempty"`
Total int32 `protobuf:"varint,2,opt,name=total" json:"total,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetBlacksResp) Reset() { *m = GetBlacksResp{} }
func (m *GetBlacksResp) String() string { return proto.CompactTextString(m) }
func (*GetBlacksResp) ProtoMessage() {}
func (*GetBlacksResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{15}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetBlacksResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetBlacksResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *GetBlacksResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetBlacksResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksResp) XXX_Size() int {
return xxx_messageInfo_GetBlacksResp.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetBlacksResp.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_GetBlacksResp proto.InternalMessageInfo
2023-01-04 11:28:52 +08:00
2023-01-31 13:37:35 +08:00
func (m *GetBlacksResp) GetBlacks() []*sdk_ws.BlackInfo {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-31 13:37:35 +08:00
return m.Blacks
2021-05-26 19:44:38 +08:00
}
return nil
}
2023-01-30 21:51:20 +08:00
func (m *GetBlacksResp) GetTotal() int32 {
2023-01-29 19:47:13 +08:00
if m != nil {
return m.Total
}
return 0
}
2021-06-28 15:33:26 +08:00
type IsFriendReq struct {
2023-01-31 11:34:30 +08:00
UserID1 string `protobuf:"bytes,1,opt,name=userID1" json:"userID1,omitempty"`
UserID2 string `protobuf:"bytes,2,opt,name=userID2" json:"userID2,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-06-28 15:33:26 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *IsFriendReq) Reset() { *m = IsFriendReq{} }
func (m *IsFriendReq) String() string { return proto.CompactTextString(m) }
func (*IsFriendReq) ProtoMessage() {}
func (*IsFriendReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{16}
2021-06-28 15:33:26 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsFriendReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsFriendReq.Unmarshal(m, b)
2021-06-28 15:33:26 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsFriendReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsFriendReq.Marshal(b, m, deterministic)
2021-06-28 15:33:26 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *IsFriendReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsFriendReq.Merge(dst, src)
}
func (m *IsFriendReq) XXX_Size() int {
return xxx_messageInfo_IsFriendReq.Size(m)
}
func (m *IsFriendReq) XXX_DiscardUnknown() {
xxx_messageInfo_IsFriendReq.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-06-28 15:33:26 +08:00
2023-01-04 11:28:52 +08:00
var xxx_messageInfo_IsFriendReq proto.InternalMessageInfo
2023-01-31 11:34:30 +08:00
func (m *IsFriendReq) GetUserID1() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-31 11:34:30 +08:00
return m.UserID1
2021-06-28 15:33:26 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-31 11:34:30 +08:00
func (m *IsFriendReq) GetUserID2() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-31 11:34:30 +08:00
return m.UserID2
2023-01-16 16:02:56 +08:00
}
return ""
2021-06-28 15:33:26 +08:00
}
type IsFriendResp struct {
2023-01-31 11:34:30 +08:00
InUser1Friends bool `protobuf:"varint,1,opt,name=inUser1Friends" json:"inUser1Friends,omitempty"`
InUser2Friends bool `protobuf:"varint,2,opt,name=inUser2Friends" json:"inUser2Friends,omitempty"`
2023-01-16 16:02:56 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-06-28 15:33:26 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *IsFriendResp) Reset() { *m = IsFriendResp{} }
func (m *IsFriendResp) String() string { return proto.CompactTextString(m) }
func (*IsFriendResp) ProtoMessage() {}
func (*IsFriendResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{17}
2021-06-28 15:33:26 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsFriendResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsFriendResp.Unmarshal(m, b)
2021-06-28 15:33:26 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsFriendResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsFriendResp.Marshal(b, m, deterministic)
2021-06-28 15:33:26 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *IsFriendResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsFriendResp.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +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
2021-06-28 15:33:26 +08:00
2023-01-31 11:34:30 +08:00
func (m *IsFriendResp) GetInUser1Friends() bool {
if m != nil {
return m.InUser1Friends
}
return false
}
func (m *IsFriendResp) GetInUser2Friends() bool {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-31 11:34:30 +08:00
return m.InUser2Friends
2021-06-28 15:33:26 +08:00
}
2021-12-26 18:47:11 +08:00
return false
2021-06-28 15:33:26 +08:00
}
2023-01-30 21:51:20 +08:00
type IsBlackReq struct {
2023-01-31 11:34:30 +08:00
UserID1 string `protobuf:"bytes,1,opt,name=userID1" json:"userID1,omitempty"`
UserID2 string `protobuf:"bytes,2,opt,name=userID2" json:"userID2,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *IsBlackReq) Reset() { *m = IsBlackReq{} }
func (m *IsBlackReq) String() string { return proto.CompactTextString(m) }
func (*IsBlackReq) ProtoMessage() {}
func (*IsBlackReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{18}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *IsBlackReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsBlackReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *IsBlackReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsBlackReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *IsBlackReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsBlackReq.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *IsBlackReq) XXX_Size() int {
return xxx_messageInfo_IsBlackReq.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *IsBlackReq) XXX_DiscardUnknown() {
xxx_messageInfo_IsBlackReq.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_IsBlackReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-31 11:34:30 +08:00
func (m *IsBlackReq) GetUserID1() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-31 11:34:30 +08:00
return m.UserID1
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-31 11:34:30 +08:00
func (m *IsBlackReq) GetUserID2() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-31 11:34:30 +08:00
return m.UserID2
2023-01-16 16:02:56 +08:00
}
return ""
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
type IsBlackResp struct {
2023-01-31 11:34:30 +08:00
InUser1Blacks bool `protobuf:"varint,1,opt,name=inUser1Blacks" json:"inUser1Blacks,omitempty"`
InUser2Blacks bool `protobuf:"varint,2,opt,name=inUser2Blacks" json:"inUser2Blacks,omitempty"`
2023-01-16 16:02:56 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *IsBlackResp) Reset() { *m = IsBlackResp{} }
func (m *IsBlackResp) String() string { return proto.CompactTextString(m) }
func (*IsBlackResp) ProtoMessage() {}
func (*IsBlackResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{19}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *IsBlackResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsBlackResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *IsBlackResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsBlackResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *IsBlackResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsBlackResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *IsBlackResp) XXX_Size() int {
return xxx_messageInfo_IsBlackResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *IsBlackResp) XXX_DiscardUnknown() {
xxx_messageInfo_IsBlackResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_IsBlackResp proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-31 11:34:30 +08:00
func (m *IsBlackResp) GetInUser1Blacks() bool {
if m != nil {
return m.InUser1Blacks
}
return false
}
func (m *IsBlackResp) GetInUser2Blacks() bool {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-31 11:34:30 +08:00
return m.InUser2Blacks
2021-05-26 19:44:38 +08:00
}
return false
}
type DeleteFriendReq struct {
2023-01-30 21:51:20 +08:00
OwnerUserID string `protobuf:"bytes,1,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
FriendUserID string `protobuf:"bytes,2,opt,name=friendUserID" json:"friendUserID,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *DeleteFriendReq) Reset() { *m = DeleteFriendReq{} }
func (m *DeleteFriendReq) String() string { return proto.CompactTextString(m) }
func (*DeleteFriendReq) ProtoMessage() {}
func (*DeleteFriendReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{20}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *DeleteFriendReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteFriendReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *DeleteFriendReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteFriendReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *DeleteFriendReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteFriendReq.Merge(dst, src)
}
func (m *DeleteFriendReq) XXX_Size() int {
return xxx_messageInfo_DeleteFriendReq.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *DeleteFriendReq) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteFriendReq.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteFriendReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
func (m *DeleteFriendReq) GetOwnerUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.OwnerUserID
2023-01-16 16:02:56 +08:00
}
return ""
}
2023-01-30 21:51:20 +08:00
func (m *DeleteFriendReq) GetFriendUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.FriendUserID
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
2021-05-26 19:44:38 +08:00
}
2021-12-26 18:47:11 +08:00
type DeleteFriendResp struct {
2023-01-16 16:02:56 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-26 18:47:11 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *DeleteFriendResp) Reset() { *m = DeleteFriendResp{} }
func (m *DeleteFriendResp) String() string { return proto.CompactTextString(m) }
func (*DeleteFriendResp) ProtoMessage() {}
func (*DeleteFriendResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{21}
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *DeleteFriendResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteFriendResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *DeleteFriendResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteFriendResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *DeleteFriendResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteFriendResp.Merge(dst, src)
}
func (m *DeleteFriendResp) XXX_Size() int {
return xxx_messageInfo_DeleteFriendResp.Size(m)
}
func (m *DeleteFriendResp) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteFriendResp.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-12-26 18:47:11 +08:00
2023-01-04 11:28:52 +08:00
var xxx_messageInfo_DeleteFriendResp proto.InternalMessageInfo
// process
2023-01-30 21:51:20 +08:00
type RespondFriendApplyReq struct {
2023-01-29 19:47:13 +08:00
FromUserID string `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
ToUserID string `protobuf:"bytes,2,opt,name=toUserID" json:"toUserID,omitempty"`
2023-01-16 16:02:56 +08:00
HandleResult int32 `protobuf:"varint,3,opt,name=handleResult" json:"handleResult,omitempty"`
HandleMsg string `protobuf:"bytes,4,opt,name=handleMsg" json:"handleMsg,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) Reset() { *m = RespondFriendApplyReq{} }
func (m *RespondFriendApplyReq) String() string { return proto.CompactTextString(m) }
func (*RespondFriendApplyReq) ProtoMessage() {}
func (*RespondFriendApplyReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{22}
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RespondFriendApplyReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RespondFriendApplyReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *RespondFriendApplyReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_RespondFriendApplyReq.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) XXX_Size() int {
return xxx_messageInfo_RespondFriendApplyReq.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) XXX_DiscardUnknown() {
xxx_messageInfo_RespondFriendApplyReq.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_RespondFriendApplyReq proto.InternalMessageInfo
2023-01-04 11:28:52 +08:00
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) GetFromUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.FromUserID
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) GetToUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.ToUserID
2023-01-16 16:02:56 +08:00
}
return ""
2021-05-26 19:44:38 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) GetHandleResult() int32 {
2023-01-04 11:28:52 +08:00
if m != nil {
return m.HandleResult
2021-05-26 19:44:38 +08:00
}
return 0
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyReq) GetHandleMsg() string {
2023-01-04 11:28:52 +08:00
if m != nil {
return m.HandleMsg
2021-12-26 18:47:11 +08:00
}
return ""
}
2023-01-30 21:51:20 +08:00
type RespondFriendApplyResp struct {
2023-01-16 16:02:56 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-26 18:47:11 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyResp) Reset() { *m = RespondFriendApplyResp{} }
func (m *RespondFriendApplyResp) String() string { return proto.CompactTextString(m) }
func (*RespondFriendApplyResp) ProtoMessage() {}
func (*RespondFriendApplyResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{23}
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RespondFriendApplyResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RespondFriendApplyResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *RespondFriendApplyResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_RespondFriendApplyResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyResp) XXX_Size() int {
return xxx_messageInfo_RespondFriendApplyResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *RespondFriendApplyResp) XXX_DiscardUnknown() {
xxx_messageInfo_RespondFriendApplyResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_RespondFriendApplyResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2021-12-29 14:25:39 +08:00
type SetFriendRemarkReq struct {
2023-01-30 21:51:20 +08:00
OwnerUserID string `protobuf:"bytes,1,opt,name=ownerUserID" json:"ownerUserID,omitempty"`
FriendUserID string `protobuf:"bytes,2,opt,name=friendUserID" json:"friendUserID,omitempty"`
2023-01-29 19:47:13 +08:00
Remark string `protobuf:"bytes,3,opt,name=remark" json:"remark,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:38 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *SetFriendRemarkReq) Reset() { *m = SetFriendRemarkReq{} }
func (m *SetFriendRemarkReq) String() string { return proto.CompactTextString(m) }
func (*SetFriendRemarkReq) ProtoMessage() {}
func (*SetFriendRemarkReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{24}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *SetFriendRemarkReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetFriendRemarkReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *SetFriendRemarkReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetFriendRemarkReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *SetFriendRemarkReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetFriendRemarkReq.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *SetFriendRemarkReq) XXX_Size() int {
return xxx_messageInfo_SetFriendRemarkReq.Size(m)
}
func (m *SetFriendRemarkReq) XXX_DiscardUnknown() {
xxx_messageInfo_SetFriendRemarkReq.DiscardUnknown(m)
}
var xxx_messageInfo_SetFriendRemarkReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-30 21:51:20 +08:00
func (m *SetFriendRemarkReq) GetOwnerUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.OwnerUserID
2021-05-26 19:44:38 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-30 21:51:20 +08:00
func (m *SetFriendRemarkReq) GetFriendUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.FriendUserID
2023-01-16 16:02:56 +08:00
}
return ""
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *SetFriendRemarkReq) GetRemark() string {
if m != nil {
return m.Remark
2021-05-26 19:44:38 +08:00
}
return ""
}
2021-12-29 14:25:39 +08:00
type SetFriendRemarkResp struct {
2023-01-16 16:02:56 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-26 18:47:11 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-04 11:28:52 +08:00
func (m *SetFriendRemarkResp) Reset() { *m = SetFriendRemarkResp{} }
func (m *SetFriendRemarkResp) String() string { return proto.CompactTextString(m) }
func (*SetFriendRemarkResp) ProtoMessage() {}
func (*SetFriendRemarkResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{25}
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *SetFriendRemarkResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetFriendRemarkResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *SetFriendRemarkResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetFriendRemarkResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *SetFriendRemarkResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetFriendRemarkResp.Merge(dst, src)
}
func (m *SetFriendRemarkResp) XXX_Size() int {
return xxx_messageInfo_SetFriendRemarkResp.Size(m)
}
func (m *SetFriendRemarkResp) XXX_DiscardUnknown() {
xxx_messageInfo_SetFriendRemarkResp.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-12-26 18:47:11 +08:00
2023-01-04 11:28:52 +08:00
var xxx_messageInfo_SetFriendRemarkResp proto.InternalMessageInfo
2023-01-30 21:51:20 +08:00
type GetFromFriendsApplyReq struct {
2023-01-29 19:47:13 +08:00
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
Pagination *sdk_ws.RequestPagination `protobuf:"bytes,2,opt,name=pagination" json:"pagination,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-26 18:47:11 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyReq) Reset() { *m = GetFromFriendsApplyReq{} }
func (m *GetFromFriendsApplyReq) String() string { return proto.CompactTextString(m) }
func (*GetFromFriendsApplyReq) ProtoMessage() {}
func (*GetFromFriendsApplyReq) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{26}
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFromFriendsApplyReq.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFromFriendsApplyReq.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *GetFromFriendsApplyReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFromFriendsApplyReq.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyReq) XXX_Size() int {
return xxx_messageInfo_GetFromFriendsApplyReq.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetFromFriendsApplyReq.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_GetFromFriendsApplyReq proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyReq) GetUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.UserID
2021-12-26 18:47:11 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyReq) GetPagination() *sdk_ws.RequestPagination {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.Pagination
2023-01-16 16:02:56 +08:00
}
2023-01-29 19:47:13 +08:00
return nil
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
type GetFromFriendsApplyResp struct {
FriendRequests []*sdk_ws.FriendRequest `protobuf:"bytes,1,rep,name=friendRequests" json:"friendRequests,omitempty"`
2023-01-29 19:47:13 +08:00
Total int32 `protobuf:"varint,2,opt,name=total" json:"total,omitempty"`
2023-01-04 11:28:52 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-26 18:47:11 +08:00
}
2022-09-27 16:59:56 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyResp) Reset() { *m = GetFromFriendsApplyResp{} }
func (m *GetFromFriendsApplyResp) String() string { return proto.CompactTextString(m) }
func (*GetFromFriendsApplyResp) ProtoMessage() {}
func (*GetFromFriendsApplyResp) Descriptor() ([]byte, []int) {
2023-01-31 13:37:35 +08:00
return fileDescriptor_friend_ae999c738a77e4f8, []int{27}
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFromFriendsApplyResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFromFriendsApplyResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-30 21:51:20 +08:00
func (dst *GetFromFriendsApplyResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFromFriendsApplyResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyResp) XXX_Size() int {
return xxx_messageInfo_GetFromFriendsApplyResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetFromFriendsApplyResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-30 21:51:20 +08:00
var xxx_messageInfo_GetFromFriendsApplyResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyResp) GetFriendRequests() []*sdk_ws.FriendRequest {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-30 21:51:20 +08:00
return m.FriendRequests
2021-12-26 18:47:11 +08:00
}
return nil
}
2023-01-30 21:51:20 +08:00
func (m *GetFromFriendsApplyResp) GetTotal() int32 {
2023-01-29 19:47:13 +08:00
if m != nil {
return m.Total
}
return 0
}
2023-01-04 11:28:52 +08:00
func init() {
2023-01-30 21:51:20 +08:00
proto.RegisterType((*GetFriendsInfoReq)(nil), "friend.getFriendsInfoReq")
proto.RegisterType((*GetFriendsInfoResp)(nil), "friend.getFriendsInfoResp")
proto.RegisterType((*AddFriendReq)(nil), "friend.addFriendReq")
proto.RegisterType((*AddFriendResp)(nil), "friend.addFriendResp")
proto.RegisterType((*ImportFriendReq)(nil), "friend.importFriendReq")
proto.RegisterType((*ImportFriendResp)(nil), "friend.importFriendResp")
proto.RegisterType((*GetToFriendsApplyReq)(nil), "friend.getToFriendsApplyReq")
proto.RegisterType((*GetToFriendsApplyResp)(nil), "friend.getToFriendsApplyResp")
proto.RegisterType((*GetFriendsReq)(nil), "friend.getFriendsReq")
proto.RegisterType((*GetFriendsResp)(nil), "friend.getFriendsResp")
proto.RegisterType((*AddBlackReq)(nil), "friend.addBlackReq")
proto.RegisterType((*AddBlackResp)(nil), "friend.addBlackResp")
proto.RegisterType((*RemoveBlackReq)(nil), "friend.removeBlackReq")
2023-01-31 09:59:15 +08:00
proto.RegisterType((*RemoveBlackResp)(nil), "friend.removeBlackResp")
2023-01-30 21:51:20 +08:00
proto.RegisterType((*GetBlacksReq)(nil), "friend.getBlacksReq")
proto.RegisterType((*GetBlacksResp)(nil), "friend.getBlacksResp")
proto.RegisterType((*IsFriendReq)(nil), "friend.isFriendReq")
proto.RegisterType((*IsFriendResp)(nil), "friend.isFriendResp")
proto.RegisterType((*IsBlackReq)(nil), "friend.isBlackReq")
proto.RegisterType((*IsBlackResp)(nil), "friend.isBlackResp")
proto.RegisterType((*DeleteFriendReq)(nil), "friend.deleteFriendReq")
proto.RegisterType((*DeleteFriendResp)(nil), "friend.deleteFriendResp")
proto.RegisterType((*RespondFriendApplyReq)(nil), "friend.respondFriendApplyReq")
proto.RegisterType((*RespondFriendApplyResp)(nil), "friend.respondFriendApplyResp")
proto.RegisterType((*SetFriendRemarkReq)(nil), "friend.setFriendRemarkReq")
proto.RegisterType((*SetFriendRemarkResp)(nil), "friend.setFriendRemarkResp")
proto.RegisterType((*GetFromFriendsApplyReq)(nil), "friend.getFromFriendsApplyReq")
proto.RegisterType((*GetFromFriendsApplyResp)(nil), "friend.getFromFriendsApplyResp")
2021-05-26 19:44:38 +08:00
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
2023-01-04 11:28:52 +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.
2023-01-04 11:28:52 +08:00
const _ = grpc.SupportPackageIsVersion4
// Client API for Friend service
2021-05-26 19:44:38 +08:00
type FriendClient interface {
2023-01-29 19:47:13 +08:00
// 申请加好友
2021-12-26 18:47:11 +08:00
AddFriend(ctx context.Context, in *AddFriendReq, opts ...grpc.CallOption) (*AddFriendResp, error)
2023-01-29 19:47:13 +08:00
// 获取收到的好友申请列表
2023-01-30 21:51:20 +08:00
GetToFriendsApply(ctx context.Context, in *GetToFriendsApplyReq, opts ...grpc.CallOption) (*GetToFriendsApplyResp, error)
2023-01-29 19:47:13 +08:00
// 获取主动发出去的好友申请列表
2023-01-30 21:51:20 +08:00
GetFromFriendsApply(ctx context.Context, in *GetFromFriendsApplyReq, opts ...grpc.CallOption) (*GetFromFriendsApplyResp, error)
2023-01-29 19:47:13 +08:00
// 获取好友列表
2023-01-30 21:51:20 +08:00
GetFriends(ctx context.Context, in *GetFriendsReq, opts ...grpc.CallOption) (*GetFriendsResp, error)
2023-01-29 19:47:13 +08:00
// 添加黑名单
2023-01-30 21:51:20 +08:00
AddBlack(ctx context.Context, in *AddBlackReq, opts ...grpc.CallOption) (*AddBlackResp, error)
2023-01-29 19:47:13 +08:00
// 移除黑名单
2023-01-31 09:59:15 +08:00
RemoveBlack(ctx context.Context, in *RemoveBlackReq, opts ...grpc.CallOption) (*RemoveBlackResp, error)
2023-01-29 19:47:13 +08:00
// 判断是否好友关系
2021-06-28 15:33:26 +08:00
IsFriend(ctx context.Context, in *IsFriendReq, opts ...grpc.CallOption) (*IsFriendResp, error)
2023-01-29 19:47:13 +08:00
// 判断是否在黑名单中
2023-01-30 21:51:20 +08:00
IsBlack(ctx context.Context, in *IsBlackReq, opts ...grpc.CallOption) (*IsBlackResp, error)
2023-01-29 19:47:13 +08:00
// 获取黑名单列表
2023-01-30 21:51:20 +08:00
GetBlacks(ctx context.Context, in *GetBlacksReq, opts ...grpc.CallOption) (*GetBlacksResp, error)
2023-01-29 19:47:13 +08:00
// 删除好友
2021-12-26 18:47:11 +08:00
DeleteFriend(ctx context.Context, in *DeleteFriendReq, opts ...grpc.CallOption) (*DeleteFriendResp, error)
2023-01-29 19:47:13 +08:00
// 对好友申请响应(同意或拒绝)
2023-01-30 21:51:20 +08:00
RespondFriendApply(ctx context.Context, in *RespondFriendApplyReq, opts ...grpc.CallOption) (*RespondFriendApplyResp, error)
2023-01-29 19:47:13 +08:00
// 设置好友备注
2021-12-29 14:36:13 +08:00
SetFriendRemark(ctx context.Context, in *SetFriendRemarkReq, opts ...grpc.CallOption) (*SetFriendRemarkResp, error)
2023-01-29 19:47:13 +08:00
// 导入好友关系
2023-01-30 21:51:20 +08:00
ImportFriends(ctx context.Context, in *ImportFriendReq, opts ...grpc.CallOption) (*ImportFriendResp, error)
2023-01-29 19:47:13 +08:00
// 获取指定好友信息
GetFriendsInfo(ctx context.Context, in *GetFriendsInfoReq, opts ...grpc.CallOption) (*GetFriendsInfoResp, error)
2021-05-26 19:44:38 +08:00
}
type friendClient struct {
2023-01-04 11:28:52 +08:00
cc *grpc.ClientConn
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func NewFriendClient(cc *grpc.ClientConn) FriendClient {
2021-05-26 19:44:38 +08:00
return &friendClient{cc}
}
2021-12-26 18:47:11 +08:00
func (c *friendClient) AddFriend(ctx context.Context, in *AddFriendReq, opts ...grpc.CallOption) (*AddFriendResp, error) {
out := new(AddFriendResp)
2023-01-04 11:28:52 +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
}
2023-01-30 21:51:20 +08:00
func (c *friendClient) GetToFriendsApply(ctx context.Context, in *GetToFriendsApplyReq, opts ...grpc.CallOption) (*GetToFriendsApplyResp, error) {
out := new(GetToFriendsApplyResp)
err := grpc.Invoke(ctx, "/friend.friend/getToFriendsApply", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2023-01-30 21:51:20 +08:00
func (c *friendClient) GetFromFriendsApply(ctx context.Context, in *GetFromFriendsApplyReq, opts ...grpc.CallOption) (*GetFromFriendsApplyResp, error) {
out := new(GetFromFriendsApplyResp)
err := grpc.Invoke(ctx, "/friend.friend/getFromFriendsApply", in, out, c.cc, opts...)
2021-06-28 15:33:26 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2023-01-30 21:51:20 +08:00
func (c *friendClient) GetFriends(ctx context.Context, in *GetFriendsReq, opts ...grpc.CallOption) (*GetFriendsResp, error) {
out := new(GetFriendsResp)
err := grpc.Invoke(ctx, "/friend.friend/getFriends", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2023-01-30 21:51:20 +08:00
func (c *friendClient) AddBlack(ctx context.Context, in *AddBlackReq, opts ...grpc.CallOption) (*AddBlackResp, error) {
out := new(AddBlackResp)
err := grpc.Invoke(ctx, "/friend.friend/addBlack", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2023-01-31 09:59:15 +08:00
func (c *friendClient) RemoveBlack(ctx context.Context, in *RemoveBlackReq, opts ...grpc.CallOption) (*RemoveBlackResp, error) {
out := new(RemoveBlackResp)
2023-01-30 21:51:20 +08:00
err := grpc.Invoke(ctx, "/friend.friend/removeBlack", 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)
2023-01-04 11:28:52 +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
}
2023-01-30 21:51:20 +08:00
func (c *friendClient) IsBlack(ctx context.Context, in *IsBlackReq, opts ...grpc.CallOption) (*IsBlackResp, error) {
out := new(IsBlackResp)
err := grpc.Invoke(ctx, "/friend.friend/isBlack", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2023-01-30 21:51:20 +08:00
func (c *friendClient) GetBlacks(ctx context.Context, in *GetBlacksReq, opts ...grpc.CallOption) (*GetBlacksResp, error) {
out := new(GetBlacksResp)
err := grpc.Invoke(ctx, "/friend.friend/getBlacks", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-12-26 18:47:11 +08:00
func (c *friendClient) DeleteFriend(ctx context.Context, in *DeleteFriendReq, opts ...grpc.CallOption) (*DeleteFriendResp, error) {
out := new(DeleteFriendResp)
2023-01-04 11:28:52 +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
}
2023-01-30 21:51:20 +08:00
func (c *friendClient) RespondFriendApply(ctx context.Context, in *RespondFriendApplyReq, opts ...grpc.CallOption) (*RespondFriendApplyResp, error) {
out := new(RespondFriendApplyResp)
err := grpc.Invoke(ctx, "/friend.friend/respondFriendApply", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-12-29 14:36:13 +08:00
func (c *friendClient) SetFriendRemark(ctx context.Context, in *SetFriendRemarkReq, opts ...grpc.CallOption) (*SetFriendRemarkResp, error) {
2021-12-29 14:25:39 +08:00
out := new(SetFriendRemarkResp)
2023-01-04 11:28:52 +08:00
err := grpc.Invoke(ctx, "/friend.friend/setFriendRemark", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2023-01-30 21:51:20 +08:00
func (c *friendClient) ImportFriends(ctx context.Context, in *ImportFriendReq, opts ...grpc.CallOption) (*ImportFriendResp, error) {
2021-09-26 14:26:45 +08:00
out := new(ImportFriendResp)
2023-01-30 21:51:20 +08:00
err := grpc.Invoke(ctx, "/friend.friend/importFriends", in, out, c.cc, opts...)
2021-09-22 20:10:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2023-01-29 19:47:13 +08:00
func (c *friendClient) GetFriendsInfo(ctx context.Context, in *GetFriendsInfoReq, opts ...grpc.CallOption) (*GetFriendsInfoResp, error) {
out := new(GetFriendsInfoResp)
err := grpc.Invoke(ctx, "/friend.friend/getFriendsInfo", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
2023-01-04 11:28:52 +08:00
// Server API for Friend service
2021-05-26 19:44:38 +08:00
type FriendServer interface {
2023-01-29 19:47:13 +08:00
// 申请加好友
2021-12-26 18:47:11 +08:00
AddFriend(context.Context, *AddFriendReq) (*AddFriendResp, error)
2023-01-29 19:47:13 +08:00
// 获取收到的好友申请列表
2023-01-30 21:51:20 +08:00
GetToFriendsApply(context.Context, *GetToFriendsApplyReq) (*GetToFriendsApplyResp, error)
2023-01-29 19:47:13 +08:00
// 获取主动发出去的好友申请列表
2023-01-30 21:51:20 +08:00
GetFromFriendsApply(context.Context, *GetFromFriendsApplyReq) (*GetFromFriendsApplyResp, error)
2023-01-29 19:47:13 +08:00
// 获取好友列表
2023-01-30 21:51:20 +08:00
GetFriends(context.Context, *GetFriendsReq) (*GetFriendsResp, error)
2023-01-29 19:47:13 +08:00
// 添加黑名单
2023-01-30 21:51:20 +08:00
AddBlack(context.Context, *AddBlackReq) (*AddBlackResp, error)
2023-01-29 19:47:13 +08:00
// 移除黑名单
2023-01-31 09:59:15 +08:00
RemoveBlack(context.Context, *RemoveBlackReq) (*RemoveBlackResp, error)
2023-01-29 19:47:13 +08:00
// 判断是否好友关系
2021-06-28 15:33:26 +08:00
IsFriend(context.Context, *IsFriendReq) (*IsFriendResp, error)
2023-01-29 19:47:13 +08:00
// 判断是否在黑名单中
2023-01-30 21:51:20 +08:00
IsBlack(context.Context, *IsBlackReq) (*IsBlackResp, error)
2023-01-29 19:47:13 +08:00
// 获取黑名单列表
2023-01-30 21:51:20 +08:00
GetBlacks(context.Context, *GetBlacksReq) (*GetBlacksResp, error)
2023-01-29 19:47:13 +08:00
// 删除好友
2021-12-26 18:47:11 +08:00
DeleteFriend(context.Context, *DeleteFriendReq) (*DeleteFriendResp, error)
2023-01-29 19:47:13 +08:00
// 对好友申请响应(同意或拒绝)
2023-01-30 21:51:20 +08:00
RespondFriendApply(context.Context, *RespondFriendApplyReq) (*RespondFriendApplyResp, error)
2023-01-29 19:47:13 +08:00
// 设置好友备注
2021-12-29 14:36:13 +08:00
SetFriendRemark(context.Context, *SetFriendRemarkReq) (*SetFriendRemarkResp, error)
2023-01-29 19:47:13 +08:00
// 导入好友关系
2023-01-30 21:51:20 +08:00
ImportFriends(context.Context, *ImportFriendReq) (*ImportFriendResp, error)
2023-01-29 19:47:13 +08:00
// 获取指定好友信息
GetFriendsInfo(context.Context, *GetFriendsInfoReq) (*GetFriendsInfoResp, error)
2021-05-26 19:44:38 +08:00
}
func RegisterFriendServer(s *grpc.Server, srv FriendServer) {
s.RegisterService(&_Friend_serviceDesc, srv)
}
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)
}
2023-01-30 21:51:20 +08:00
func _Friend_GetToFriendsApply_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetToFriendsApplyReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).GetToFriendsApply(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/GetToFriendsApply",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).GetToFriendsApply(ctx, req.(*GetToFriendsApplyReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2023-01-30 21:51:20 +08:00
func _Friend_GetFromFriendsApply_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFromFriendsApplyReq)
2021-06-28 15:33:26 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).GetFromFriendsApply(ctx, in)
2021-06-28 15:33:26 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/GetFromFriendsApply",
2021-06-28 15:33:26 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).GetFromFriendsApply(ctx, req.(*GetFromFriendsApplyReq))
2021-06-28 15:33:26 +08:00
}
return interceptor(ctx, in, info, handler)
}
2023-01-30 21:51:20 +08:00
func _Friend_GetFriends_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFriendsReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).GetFriends(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/GetFriends",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).GetFriends(ctx, req.(*GetFriendsReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2023-01-30 21:51:20 +08:00
func _Friend_AddBlack_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AddBlackReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).AddBlack(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/AddBlack",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).AddBlack(ctx, req.(*AddBlackReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2023-01-30 21:51:20 +08:00
func _Friend_RemoveBlack_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RemoveBlackReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).RemoveBlack(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/RemoveBlack",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).RemoveBlack(ctx, req.(*RemoveBlackReq))
2021-05-26 19:44:38 +08:00
}
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)
}
2023-01-30 21:51:20 +08:00
func _Friend_IsBlack_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(IsBlackReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).IsBlack(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/IsBlack",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).IsBlack(ctx, req.(*IsBlackReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2023-01-30 21:51:20 +08:00
func _Friend_GetBlacks_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetBlacksReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).GetBlacks(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/GetBlacks",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).GetBlacks(ctx, req.(*GetBlacksReq))
2021-05-26 19:44:38 +08:00
}
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)
}
2023-01-30 21:51:20 +08:00
func _Friend_RespondFriendApply_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RespondFriendApplyReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).RespondFriendApply(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/RespondFriendApply",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).RespondFriendApply(ctx, req.(*RespondFriendApplyReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2021-12-29 14:36:13 +08:00
func _Friend_SetFriendRemark_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2021-12-29 14:25:39 +08:00
in := new(SetFriendRemarkReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2021-12-29 14:36:13 +08:00
return srv.(FriendServer).SetFriendRemark(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2021-12-29 14:36:13 +08:00
FullMethod: "/friend.friend/SetFriendRemark",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2021-12-29 14:36:13 +08:00
return srv.(FriendServer).SetFriendRemark(ctx, req.(*SetFriendRemarkReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2023-01-30 21:51:20 +08:00
func _Friend_ImportFriends_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2021-09-22 20:10:38 +08:00
in := new(ImportFriendReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).ImportFriends(ctx, in)
2021-09-22 20:10:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-30 21:51:20 +08:00
FullMethod: "/friend.friend/ImportFriends",
2021-09-22 20:10:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-30 21:51:20 +08:00
return srv.(FriendServer).ImportFriends(ctx, req.(*ImportFriendReq))
2021-09-22 20:10:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2023-01-29 19:47:13 +08:00
func _Friend_GetFriendsInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFriendsInfoReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FriendServer).GetFriendsInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/friend.friend/GetFriendsInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FriendServer).GetFriendsInfo(ctx, req.(*GetFriendsInfoReq))
}
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{
{
MethodName: "addFriend",
Handler: _Friend_AddFriend_Handler,
},
{
2023-01-30 21:51:20 +08:00
MethodName: "getToFriendsApply",
Handler: _Friend_GetToFriendsApply_Handler,
2021-05-26 19:44:38 +08:00
},
2021-06-28 15:33:26 +08:00
{
2023-01-30 21:51:20 +08:00
MethodName: "getFromFriendsApply",
Handler: _Friend_GetFromFriendsApply_Handler,
2021-06-28 15:33:26 +08:00
},
2021-05-26 19:44:38 +08:00
{
2023-01-30 21:51:20 +08:00
MethodName: "getFriends",
Handler: _Friend_GetFriends_Handler,
2021-05-26 19:44:38 +08:00
},
{
2023-01-30 21:51:20 +08:00
MethodName: "addBlack",
Handler: _Friend_AddBlack_Handler,
2021-05-26 19:44:38 +08:00
},
{
2023-01-30 21:51:20 +08:00
MethodName: "removeBlack",
Handler: _Friend_RemoveBlack_Handler,
2021-05-26 19:44:38 +08:00
},
2021-06-28 15:33:26 +08:00
{
MethodName: "isFriend",
Handler: _Friend_IsFriend_Handler,
},
2021-05-26 19:44:38 +08:00
{
2023-01-30 21:51:20 +08:00
MethodName: "isBlack",
Handler: _Friend_IsBlack_Handler,
2021-05-26 19:44:38 +08:00
},
{
2023-01-30 21:51:20 +08:00
MethodName: "getBlacks",
Handler: _Friend_GetBlacks_Handler,
2021-05-26 19:44:38 +08:00
},
{
MethodName: "deleteFriend",
Handler: _Friend_DeleteFriend_Handler,
},
{
2023-01-30 21:51:20 +08:00
MethodName: "respondFriendApply",
Handler: _Friend_RespondFriendApply_Handler,
2021-05-26 19:44:38 +08:00
},
{
2021-12-29 14:36:13 +08:00
MethodName: "setFriendRemark",
Handler: _Friend_SetFriendRemark_Handler,
2021-05-26 19:44:38 +08:00
},
2021-09-22 20:10:38 +08:00
{
2023-01-30 21:51:20 +08:00
MethodName: "importFriends",
Handler: _Friend_ImportFriends_Handler,
2021-09-22 20:10:38 +08:00
},
2023-01-29 19:47:13 +08:00
{
MethodName: "getFriendsInfo",
Handler: _Friend_GetFriendsInfo_Handler,
},
2021-05-26 19:44:38 +08:00
},
Streams: []grpc.StreamDesc{},
Metadata: "friend/friend.proto",
}
2023-01-04 11:28:52 +08:00
2023-01-31 13:37:35 +08:00
func init() { proto.RegisterFile("friend/friend.proto", fileDescriptor_friend_ae999c738a77e4f8) }
var fileDescriptor_friend_ae999c738a77e4f8 = []byte{
// 955 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xef, 0x6e, 0x1b, 0x45,
0x10, 0x97, 0x1d, 0xe2, 0x24, 0x63, 0xc7, 0xa6, 0xe3, 0xd8, 0x3d, 0x8e, 0x24, 0x35, 0xab, 0x0a,
0xe5, 0x4b, 0x63, 0xd5, 0x80, 0x84, 0x54, 0x09, 0x48, 0x54, 0x15, 0x82, 0x14, 0x51, 0xae, 0x2d,
0xa8, 0x54, 0x22, 0xba, 0x72, 0x6b, 0x73, 0x8a, 0x7d, 0xb7, 0xb9, 0xb9, 0xc4, 0xed, 0x83, 0xf0,
0x2a, 0x3c, 0x1f, 0xba, 0xdd, 0xbd, 0xdb, 0x3d, 0xfb, 0x1c, 0x35, 0x21, 0xf0, 0xc9, 0x9a, 0xdf,
0xcc, 0xec, 0xfc, 0xd9, 0xf1, 0xfc, 0xf6, 0xa0, 0x3b, 0x4e, 0x42, 0x1e, 0x05, 0x43, 0xf5, 0x73,
0x28, 0x92, 0x38, 0x8d, 0xb1, 0xa1, 0x24, 0xf7, 0xe0, 0x27, 0xc1, 0xa3, 0x47, 0x27, 0xa7, 0x8f,
0x5e, 0xf0, 0xe4, 0x8a, 0x27, 0x43, 0x71, 0x3e, 0x19, 0x4a, 0x8b, 0x21, 0x05, 0xe7, 0x67, 0x73,
0x1a, 0xce, 0x49, 0x79, 0xb0, 0x37, 0x70, 0x6f, 0xc2, 0xd3, 0x67, 0xd2, 0x8d, 0x4e, 0xa2, 0x71,
0xec, 0xf1, 0x0b, 0x1c, 0x40, 0x33, 0x9e, 0x47, 0x3c, 0x79, 0x45, 0x3c, 0x39, 0x79, 0xea, 0xd4,
0x06, 0xb5, 0x83, 0x2d, 0xcf, 0x86, 0xf0, 0x21, 0x6c, 0xab, 0x50, 0x4a, 0x26, 0xa7, 0x3e, 0x58,
0x3b, 0xd8, 0xf2, 0xca, 0x20, 0x7b, 0x05, 0xb8, 0x78, 0x38, 0x09, 0xfc, 0x16, 0x9a, 0x63, 0x03,
0x39, 0xb5, 0xc1, 0xda, 0x41, 0x73, 0xb4, 0x77, 0x48, 0x32, 0xd5, 0x33, 0x5f, 0x84, 0x67, 0xc2,
0x4f, 0xfc, 0x19, 0x1d, 0x2a, 0x47, 0xe9, 0x67, 0x7b, 0xb0, 0x04, 0x5a, 0x7e, 0x10, 0x28, 0x6d,
0x96, 0xee, 0x3e, 0xc0, 0x38, 0x89, 0x67, 0xa5, 0x6c, 0x2d, 0x04, 0x5d, 0xd8, 0x4c, 0x63, 0xad,
0xad, 0x4b, 0x6d, 0x21, 0x63, 0x1f, 0x1a, 0x09, 0xbf, 0x38, 0xa5, 0x89, 0xb3, 0x26, 0x35, 0x5a,
0xc2, 0x36, 0xd4, 0xf9, 0x3b, 0xe7, 0x23, 0x89, 0xd5, 0xf9, 0x3b, 0xd6, 0x81, 0x6d, 0x2b, 0x26,
0x09, 0xf6, 0x1a, 0x3a, 0xe1, 0x4c, 0xc4, 0x49, 0x6a, 0xf2, 0xb8, 0xab, 0xb6, 0x21, 0x7c, 0x5c,
0x3e, 0x9a, 0x04, 0x4b, 0x61, 0x67, 0xc2, 0xd3, 0x97, 0xb1, 0x6e, 0xe6, 0x91, 0x10, 0xd3, 0xf7,
0x59, 0xcc, 0x3e, 0x34, 0x2e, 0xed, 0x70, 0x5a, 0xc2, 0xa7, 0x00, 0xc2, 0x9f, 0x84, 0x91, 0x9f,
0x86, 0x71, 0x24, 0xab, 0x6e, 0x8e, 0x1e, 0x56, 0xf4, 0xd8, 0xe3, 0x17, 0x97, 0x9c, 0xd2, 0xe7,
0x85, 0xad, 0x67, 0xf9, 0xb1, 0x39, 0xf4, 0x2a, 0xa2, 0x92, 0xc0, 0x1f, 0xa0, 0x5d, 0xd4, 0x9d,
0xf9, 0x93, 0xbe, 0xc6, 0xc1, 0xca, 0x6b, 0xd4, 0x86, 0xde, 0x82, 0x1f, 0xee, 0xc0, 0x7a, 0x1a,
0xa7, 0xfe, 0x54, 0xe6, 0xb8, 0xee, 0x29, 0x81, 0xcd, 0x60, 0xdb, 0x4c, 0x4e, 0x56, 0x67, 0xb9,
0x9e, 0xda, 0xed, 0xea, 0xb1, 0xba, 0x55, 0xb7, 0xbb, 0xc5, 0x26, 0xd0, 0xb6, 0xc3, 0xa9, 0x21,
0x7d, 0x76, 0xe3, 0x21, 0xb5, 0x3c, 0x56, 0xd4, 0xf5, 0x33, 0x34, 0xfd, 0x20, 0x38, 0x9e, 0xfa,
0x7f, 0x9c, 0x7f, 0xd8, 0xc4, 0x0c, 0xa0, 0xf9, 0x36, 0xb3, 0x2e, 0x8d, 0xaf, 0x0d, 0xb1, 0xb6,
0xfc, 0x37, 0xe8, 0x23, 0x49, 0xb0, 0x97, 0xd0, 0x4e, 0xf8, 0x2c, 0xbe, 0xe2, 0x77, 0x1a, 0xe5,
0x1e, 0x74, 0x4a, 0xa7, 0x92, 0x60, 0x53, 0x68, 0x4d, 0x78, 0x2a, 0x65, 0xfa, 0xef, 0x47, 0xf1,
0x8d, 0x9c, 0x88, 0x3c, 0x1a, 0x09, 0xfc, 0x12, 0x1a, 0x32, 0xc1, 0x7c, 0xf4, 0x76, 0x2b, 0x8e,
0x94, 0xe6, 0xf2, 0x6e, 0xb4, 0xed, 0x8a, 0x6b, 0x39, 0x82, 0x66, 0x48, 0xe6, 0x8f, 0xec, 0xc0,
0x86, 0xca, 0xfd, 0xb1, 0x2e, 0x25, 0x17, 0x8d, 0x66, 0xa4, 0x9b, 0x94, 0x8b, 0xec, 0x77, 0x68,
0x99, 0x23, 0x48, 0xe0, 0xe7, 0xd0, 0x0e, 0xa3, 0xac, 0x79, 0x8f, 0xf5, 0x54, 0xc8, 0xa3, 0x36,
0xbd, 0x05, 0xd4, 0xd8, 0x8d, 0x72, 0xbb, 0xba, 0x6d, 0x97, 0xa3, 0xec, 0x3b, 0x80, 0x90, 0x8a,
0x2b, 0xbd, 0x4d, 0x86, 0xaf, 0xb3, 0x22, 0x8b, 0xeb, 0xcb, 0x76, 0x91, 0x4e, 0xe5, 0x38, 0x6f,
0x63, 0x16, 0xb7, 0x0c, 0x1a, 0xab, 0x91, 0xb6, 0xaa, 0xdb, 0x56, 0x1a, 0x64, 0xbf, 0x42, 0x27,
0xe0, 0x53, 0x9e, 0xf2, 0x9b, 0x2c, 0x43, 0x06, 0x2d, 0x7b, 0xef, 0xe9, 0x74, 0x4b, 0x58, 0xb6,
0x0a, 0xcb, 0x07, 0x93, 0x60, 0x7f, 0xd5, 0xa0, 0x97, 0x70, 0x12, 0x71, 0xa4, 0xf7, 0x71, 0xb1,
0x0c, 0xff, 0x0d, 0x11, 0x30, 0x68, 0xfd, 0xe9, 0x47, 0xc1, 0x94, 0x7b, 0x9c, 0x2e, 0xa7, 0xa9,
0xa4, 0x83, 0x75, 0xaf, 0x84, 0xe1, 0x2e, 0x6c, 0x29, 0x39, 0xe3, 0x0b, 0xc5, 0x0d, 0x06, 0x60,
0x0e, 0xf4, 0xab, 0xd2, 0x22, 0xc1, 0x12, 0x40, 0xe2, 0xc5, 0x36, 0x9f, 0xf9, 0xc9, 0xf9, 0x9d,
0x75, 0x48, 0x11, 0x58, 0x76, 0xa4, 0x21, 0xb0, 0x4c, 0x62, 0x3d, 0xe8, 0x2e, 0xc5, 0x24, 0xc1,
0xae, 0xa0, 0x2f, 0x37, 0x5d, 0x3c, 0xfb, 0x7f, 0x99, 0xe4, 0x3d, 0xdc, 0xaf, 0x8c, 0xab, 0xb8,
0x64, 0x7c, 0x4b, 0x2e, 0x19, 0x7f, 0x00, 0x97, 0x8c, 0xfe, 0xde, 0x00, 0xfd, 0x2e, 0xc2, 0xaf,
0x61, 0xab, 0x60, 0x71, 0xdc, 0x39, 0xd4, 0x6f, 0x27, 0xfb, 0x31, 0xe1, 0xf6, 0x2a, 0x50, 0x12,
0xf8, 0x5c, 0xbe, 0x93, 0xca, 0x4c, 0x88, 0xbb, 0xb9, 0x6d, 0x15, 0x35, 0xbb, 0x7b, 0xd7, 0x68,
0x49, 0xe0, 0x2f, 0xd0, 0xad, 0xe8, 0x08, 0xee, 0x5b, 0x5e, 0x15, 0xd7, 0xe4, 0x3e, 0xb8, 0x56,
0x4f, 0x02, 0x9f, 0x00, 0x18, 0x2e, 0xc3, 0x5e, 0xc9, 0x3c, 0xa7, 0x53, 0xb7, 0x5f, 0x05, 0x93,
0xc0, 0xaf, 0x60, 0x33, 0x27, 0x13, 0xec, 0x5a, 0x9d, 0xc8, 0x17, 0x8f, 0xbb, 0xb3, 0x0c, 0x92,
0xc0, 0x6f, 0xa0, 0x69, 0xb1, 0x03, 0x16, 0xa7, 0x97, 0x89, 0xc8, 0xbd, 0x5f, 0x89, 0xab, 0xb0,
0xf9, 0xf2, 0x34, 0x61, 0xad, 0x8d, 0x6c, 0xc2, 0x96, 0x76, 0xec, 0x08, 0x36, 0xf4, 0x46, 0x43,
0x34, 0x06, 0x45, 0xb8, 0xee, 0x12, 0x46, 0x22, 0x1b, 0x81, 0x82, 0x47, 0xcc, 0x08, 0xd8, 0x44,
0xe6, 0xf6, 0x2a, 0x50, 0x12, 0x78, 0x04, 0x2d, 0x7b, 0x17, 0x61, 0x51, 0xcd, 0xc2, 0xea, 0x73,
0x9d, 0x6a, 0x05, 0x09, 0x7c, 0x01, 0xb8, 0xbc, 0x22, 0x70, 0xcf, 0xb4, 0xa5, 0x62, 0xab, 0xb9,
0xfb, 0xd7, 0xa9, 0x49, 0xe0, 0x8f, 0xd0, 0x59, 0xf8, 0xa7, 0xa3, 0x9b, 0xbb, 0x2c, 0xaf, 0x1d,
0xf7, 0xd3, 0x95, 0x3a, 0x12, 0x78, 0x0c, 0xdb, 0xf6, 0xd3, 0x93, 0x4c, 0x91, 0x0b, 0x8f, 0x5d,
0x53, 0xe4, 0xe2, 0x53, 0x15, 0xbf, 0xb7, 0x1f, 0x53, 0xf2, 0x2d, 0xf4, 0xc9, 0xf2, 0xb4, 0xe9,
0x4f, 0x0d, 0xd7, 0x5d, 0xa5, 0x22, 0x71, 0xfc, 0xd9, 0x6f, 0x0f, 0xb2, 0xef, 0x98, 0xb3, 0x93,
0x53, 0xeb, 0x03, 0x46, 0x99, 0x3f, 0x51, 0x3f, 0x6f, 0x1b, 0x12, 0xfc, 0xe2, 0x9f, 0x00, 0x00,
0x00, 0xff, 0xff, 0xdd, 0xee, 0xa4, 0x0d, 0x0e, 0x0d, 0x00, 0x00,
2023-01-04 11:28:52 +08:00
}