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

1842 lines
68 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-29 19:47:13 +08:00
FromUserID string `protobuf:"bytes,1,opt,name=fromUserID" json:"fromUserID,omitempty"`
ToUserIDs []string `protobuf:"bytes,2,rep,name=toUserIDs" json:"toUserIDs,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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-29 19:47:13 +08:00
func (m *GetFriendsInfoReq) 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 *GetFriendsInfoReq) GetToUserIDs() []string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.ToUserIDs
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-16 16:02:56 +08:00
FriendInfoList []*sdk_ws.FriendInfo `protobuf:"bytes,1,rep,name=FriendInfoList" json:"FriendInfoList,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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-29 19:47:13 +08:00
func (m *GetFriendsInfoResp) GetFriendInfoList() []*sdk_ws.FriendInfo {
2023-01-04 11:28:52 +08:00
if m != nil {
return m.FriendInfoList
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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-04 11:28:52 +08:00
FriendUserIDList []string `protobuf:"bytes,1,rep,name=FriendUserIDList" json:"FriendUserIDList,omitempty"`
2023-01-16 16:02:56 +08:00
FromUserID string `protobuf:"bytes,2,opt,name=FromUserID" json:"FromUserID,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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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
func (m *ImportFriendReq) GetFriendUserIDList() []string {
if m != nil {
return m.FriendUserIDList
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
}
2023-01-04 11:28:52 +08:00
func (m *ImportFriendReq) GetFromUserID() string {
if m != nil {
return m.FromUserID
2021-09-22 20:10:38 +08:00
}
return ""
}
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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-29 19:47:13 +08:00
type GetToFriendApplyListReq struct {
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-29 19:47:13 +08:00
func (m *GetToFriendApplyListReq) Reset() { *m = GetToFriendApplyListReq{} }
func (m *GetToFriendApplyListReq) String() string { return proto.CompactTextString(m) }
func (*GetToFriendApplyListReq) ProtoMessage() {}
func (*GetToFriendApplyListReq) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{6}
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetToFriendApplyListReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetToFriendApplyListReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (dst *GetToFriendApplyListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetToFriendApplyListReq.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListReq) XXX_Size() int {
return xxx_messageInfo_GetToFriendApplyListReq.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetToFriendApplyListReq.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
var xxx_messageInfo_GetToFriendApplyListReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListReq) 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-29 19:47:13 +08:00
func (m *GetToFriendApplyListReq) 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-29 19:47:13 +08:00
type GetToFriendApplyListResp struct {
2023-01-16 16:02:56 +08:00
FriendRequestList []*sdk_ws.FriendRequest `protobuf:"bytes,1,rep,name=FriendRequestList" json:"FriendRequestList,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-29 19:47:13 +08:00
func (m *GetToFriendApplyListResp) Reset() { *m = GetToFriendApplyListResp{} }
func (m *GetToFriendApplyListResp) String() string { return proto.CompactTextString(m) }
func (*GetToFriendApplyListResp) ProtoMessage() {}
func (*GetToFriendApplyListResp) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{7}
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetToFriendApplyListResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetToFriendApplyListResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (dst *GetToFriendApplyListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetToFriendApplyListResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListResp) XXX_Size() int {
return xxx_messageInfo_GetToFriendApplyListResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetToFriendApplyListResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
var xxx_messageInfo_GetToFriendApplyListResp proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-29 19:47:13 +08:00
func (m *GetToFriendApplyListResp) GetFriendRequestList() []*sdk_ws.FriendRequest {
2023-01-04 11:28:52 +08:00
if m != nil {
return m.FriendRequestList
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-29 19:47:13 +08:00
func (m *GetToFriendApplyListResp) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
2021-05-26 19:44:38 +08:00
type GetFriendListReq 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-04 11:28:52 +08:00
func (m *GetFriendListReq) Reset() { *m = GetFriendListReq{} }
func (m *GetFriendListReq) String() string { return proto.CompactTextString(m) }
func (*GetFriendListReq) ProtoMessage() {}
func (*GetFriendListReq) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{8}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetFriendListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendListReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetFriendListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendListReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *GetFriendListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendListReq.Merge(dst, src)
}
func (m *GetFriendListReq) XXX_Size() int {
return xxx_messageInfo_GetFriendListReq.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetFriendListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendListReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetFriendListReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-29 19:47:13 +08:00
func (m *GetFriendListReq) 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-29 19:47:13 +08:00
func (m *GetFriendListReq) 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
}
type GetFriendListResp struct {
2023-01-16 16:02:56 +08:00
FriendInfoList []*sdk_ws.FriendInfo `protobuf:"bytes,1,rep,name=FriendInfoList" json:"FriendInfoList,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-04 11:28:52 +08:00
func (m *GetFriendListResp) Reset() { *m = GetFriendListResp{} }
func (m *GetFriendListResp) String() string { return proto.CompactTextString(m) }
func (*GetFriendListResp) ProtoMessage() {}
func (*GetFriendListResp) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{9}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetFriendListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFriendListResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetFriendListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFriendListResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *GetFriendListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFriendListResp.Merge(dst, src)
}
func (m *GetFriendListResp) XXX_Size() int {
return xxx_messageInfo_GetFriendListResp.Size(m)
}
func (m *GetFriendListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetFriendListResp.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-05-26 19:44:38 +08:00
2023-01-04 11:28:52 +08:00
var xxx_messageInfo_GetFriendListResp proto.InternalMessageInfo
func (m *GetFriendListResp) GetFriendInfoList() []*sdk_ws.FriendInfo {
if m != nil {
return m.FriendInfoList
2021-05-26 19:44:38 +08:00
}
return nil
}
2023-01-29 19:47:13 +08:00
func (m *GetFriendListResp) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
2021-05-26 19:44:38 +08:00
type AddBlacklistReq 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-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 *AddBlacklistReq) Reset() { *m = AddBlacklistReq{} }
func (m *AddBlacklistReq) String() string { return proto.CompactTextString(m) }
func (*AddBlacklistReq) ProtoMessage() {}
func (*AddBlacklistReq) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{10}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddBlacklistReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddBlacklistReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddBlacklistReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddBlacklistReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *AddBlacklistReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddBlacklistReq.Merge(dst, src)
}
func (m *AddBlacklistReq) XXX_Size() int {
return xxx_messageInfo_AddBlacklistReq.Size(m)
}
func (m *AddBlacklistReq) XXX_DiscardUnknown() {
xxx_messageInfo_AddBlacklistReq.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-05-26 19:44:38 +08:00
2023-01-04 11:28:52 +08:00
var xxx_messageInfo_AddBlacklistReq proto.InternalMessageInfo
2023-01-29 19:47:13 +08:00
func (m *AddBlacklistReq) 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 *AddBlacklistReq) 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-09-22 20:10:38 +08:00
}
2021-12-26 18:47:11 +08:00
type AddBlacklistResp 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 *AddBlacklistResp) Reset() { *m = AddBlacklistResp{} }
func (m *AddBlacklistResp) String() string { return proto.CompactTextString(m) }
func (*AddBlacklistResp) ProtoMessage() {}
func (*AddBlacklistResp) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{11}
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddBlacklistResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddBlacklistResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddBlacklistResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddBlacklistResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *AddBlacklistResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddBlacklistResp.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *AddBlacklistResp) XXX_Size() int {
return xxx_messageInfo_AddBlacklistResp.Size(m)
}
func (m *AddBlacklistResp) XXX_DiscardUnknown() {
xxx_messageInfo_AddBlacklistResp.DiscardUnknown(m)
}
var xxx_messageInfo_AddBlacklistResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2021-05-26 19:44:38 +08:00
type RemoveBlacklistReq 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-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 *RemoveBlacklistReq) Reset() { *m = RemoveBlacklistReq{} }
func (m *RemoveBlacklistReq) String() string { return proto.CompactTextString(m) }
func (*RemoveBlacklistReq) ProtoMessage() {}
func (*RemoveBlacklistReq) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{12}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *RemoveBlacklistReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveBlacklistReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *RemoveBlacklistReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoveBlacklistReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *RemoveBlacklistReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoveBlacklistReq.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +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
2021-05-26 19:44:38 +08:00
2023-01-29 19:47:13 +08:00
func (m *RemoveBlacklistReq) 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 *RemoveBlacklistReq) 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
}
2021-12-26 18:47:11 +08:00
type RemoveBlacklistResp 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 *RemoveBlacklistResp) Reset() { *m = RemoveBlacklistResp{} }
func (m *RemoveBlacklistResp) String() string { return proto.CompactTextString(m) }
func (*RemoveBlacklistResp) ProtoMessage() {}
func (*RemoveBlacklistResp) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{13}
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *RemoveBlacklistResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoveBlacklistResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *RemoveBlacklistResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoveBlacklistResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *RemoveBlacklistResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoveBlacklistResp.Merge(dst, src)
}
func (m *RemoveBlacklistResp) XXX_Size() int {
return xxx_messageInfo_RemoveBlacklistResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *RemoveBlacklistResp) XXX_DiscardUnknown() {
xxx_messageInfo_RemoveBlacklistResp.DiscardUnknown(m)
}
var xxx_messageInfo_RemoveBlacklistResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2021-05-26 19:44:38 +08:00
type GetBlacklistReq 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-04 11:28:52 +08:00
func (m *GetBlacklistReq) Reset() { *m = GetBlacklistReq{} }
func (m *GetBlacklistReq) String() string { return proto.CompactTextString(m) }
func (*GetBlacklistReq) ProtoMessage() {}
func (*GetBlacklistReq) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{14}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetBlacklistReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetBlacklistReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetBlacklistReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetBlacklistReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *GetBlacklistReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetBlacklistReq.Merge(dst, src)
}
func (m *GetBlacklistReq) XXX_Size() int {
return xxx_messageInfo_GetBlacklistReq.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetBlacklistReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetBlacklistReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetBlacklistReq proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-29 19:47:13 +08:00
func (m *GetBlacklistReq) 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-29 19:47:13 +08:00
func (m *GetBlacklistReq) GetPagination() *sdk_ws.RequestPagination {
if m != nil {
return m.Pagination
}
return nil
}
2021-05-26 19:44:38 +08:00
type GetBlacklistResp struct {
2023-01-16 16:02:56 +08:00
BlackUserInfoList []*sdk_ws.PublicUserInfo `protobuf:"bytes,1,rep,name=BlackUserInfoList" json:"BlackUserInfoList,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-04 11:28:52 +08:00
func (m *GetBlacklistResp) Reset() { *m = GetBlacklistResp{} }
func (m *GetBlacklistResp) String() string { return proto.CompactTextString(m) }
func (*GetBlacklistResp) ProtoMessage() {}
func (*GetBlacklistResp) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{15}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetBlacklistResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetBlacklistResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *GetBlacklistResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetBlacklistResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *GetBlacklistResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetBlacklistResp.Merge(dst, src)
}
func (m *GetBlacklistResp) XXX_Size() int {
return xxx_messageInfo_GetBlacklistResp.Size(m)
}
func (m *GetBlacklistResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetBlacklistResp.DiscardUnknown(m)
2022-09-27 16:59:56 +08:00
}
2021-05-26 19:44:38 +08:00
2023-01-04 11:28:52 +08:00
var xxx_messageInfo_GetBlacklistResp proto.InternalMessageInfo
func (m *GetBlacklistResp) GetBlackUserInfoList() []*sdk_ws.PublicUserInfo {
if m != nil {
return m.BlackUserInfoList
2021-05-26 19:44:38 +08:00
}
return nil
}
2023-01-29 19:47:13 +08:00
func (m *GetBlacklistResp) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
2021-06-28 15:33:26 +08:00
type IsFriendReq 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-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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-29 19:47:13 +08:00
func (m *IsFriendReq) 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-06-28 15:33:26 +08:00
}
2023-01-16 16:02:56 +08:00
return ""
}
2023-01-29 19:47:13 +08:00
func (m *IsFriendReq) 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-06-28 15:33:26 +08:00
}
type IsFriendResp struct {
2023-01-16 16:02:56 +08:00
Response bool `protobuf:"varint,1,opt,name=Response" json:"Response,omitempty"`
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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-04 11:28:52 +08:00
func (m *IsFriendResp) GetResponse() bool {
if m != nil {
return m.Response
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
}
2021-05-26 19:44:38 +08:00
type IsInBlackListReq 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-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 *IsInBlackListReq) Reset() { *m = IsInBlackListReq{} }
func (m *IsInBlackListReq) String() string { return proto.CompactTextString(m) }
func (*IsInBlackListReq) ProtoMessage() {}
func (*IsInBlackListReq) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{18}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsInBlackListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsInBlackListReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsInBlackListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsInBlackListReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *IsInBlackListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsInBlackListReq.Merge(dst, src)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +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
2021-05-26 19:44:38 +08:00
2023-01-29 19:47:13 +08:00
func (m *IsInBlackListReq) 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 *IsInBlackListReq) 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
}
type IsInBlackListResp struct {
2023-01-16 16:02:56 +08:00
Response bool `protobuf:"varint,1,opt,name=Response" json:"Response,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-04 11:28:52 +08:00
func (m *IsInBlackListResp) Reset() { *m = IsInBlackListResp{} }
func (m *IsInBlackListResp) String() string { return proto.CompactTextString(m) }
func (*IsInBlackListResp) ProtoMessage() {}
func (*IsInBlackListResp) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{19}
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsInBlackListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IsInBlackListResp.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsInBlackListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IsInBlackListResp.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-04 11:28:52 +08:00
func (dst *IsInBlackListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_IsInBlackListResp.Merge(dst, src)
}
func (m *IsInBlackListResp) XXX_Size() int {
return xxx_messageInfo_IsInBlackListResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-04 11:28:52 +08:00
func (m *IsInBlackListResp) XXX_DiscardUnknown() {
xxx_messageInfo_IsInBlackListResp.DiscardUnknown(m)
}
var xxx_messageInfo_IsInBlackListResp proto.InternalMessageInfo
2021-05-26 19:44:38 +08:00
2023-01-04 11:28:52 +08:00
func (m *IsInBlackListResp) GetResponse() bool {
if m != nil {
return m.Response
2021-05-26 19:44:38 +08:00
}
return false
}
type DeleteFriendReq 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-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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-29 19:47:13 +08:00
func (m *DeleteFriendReq) GetFromUserID() string {
2023-01-16 16:02:56 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.FromUserID
2023-01-16 16:02:56 +08:00
}
return ""
}
2023-01-29 19:47:13 +08:00
func (m *DeleteFriendReq) GetToUserID() string {
2023-01-04 11:28:52 +08:00
if m != nil {
2023-01-29 19:47:13 +08:00
return m.ToUserID
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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-29 19:47:13 +08:00
type FriendApplyResponseReq struct {
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-29 19:47:13 +08:00
func (m *FriendApplyResponseReq) Reset() { *m = FriendApplyResponseReq{} }
func (m *FriendApplyResponseReq) String() string { return proto.CompactTextString(m) }
func (*FriendApplyResponseReq) ProtoMessage() {}
func (*FriendApplyResponseReq) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{22}
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendApplyResponseReq.Unmarshal(m, b)
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendApplyResponseReq.Marshal(b, m, deterministic)
2021-05-26 19:44:38 +08:00
}
2023-01-29 19:47:13 +08:00
func (dst *FriendApplyResponseReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendApplyResponseReq.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseReq) XXX_Size() int {
return xxx_messageInfo_FriendApplyResponseReq.Size(m)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseReq) XXX_DiscardUnknown() {
xxx_messageInfo_FriendApplyResponseReq.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_FriendApplyResponseReq proto.InternalMessageInfo
2023-01-04 11:28:52 +08:00
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseReq) 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 *FriendApplyResponseReq) 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-29 19:47:13 +08:00
func (m *FriendApplyResponseReq) 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-29 19:47:13 +08:00
func (m *FriendApplyResponseReq) 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-29 19:47:13 +08:00
type FriendApplyResponseResp 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-29 19:47:13 +08:00
func (m *FriendApplyResponseResp) Reset() { *m = FriendApplyResponseResp{} }
func (m *FriendApplyResponseResp) String() string { return proto.CompactTextString(m) }
func (*FriendApplyResponseResp) ProtoMessage() {}
func (*FriendApplyResponseResp) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{23}
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FriendApplyResponseResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_FriendApplyResponseResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (dst *FriendApplyResponseResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_FriendApplyResponseResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseResp) XXX_Size() int {
return xxx_messageInfo_FriendApplyResponseResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *FriendApplyResponseResp) XXX_DiscardUnknown() {
xxx_messageInfo_FriendApplyResponseResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
var xxx_messageInfo_FriendApplyResponseResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2021-12-29 14:25:39 +08:00
type SetFriendRemarkReq 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"`
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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-29 19:47:13 +08:00
func (m *SetFriendRemarkReq) 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 *SetFriendRemarkReq) 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 *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-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []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-29 19:47:13 +08:00
type GetFromFriendApplyListReq struct {
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-29 19:47:13 +08:00
func (m *GetFromFriendApplyListReq) Reset() { *m = GetFromFriendApplyListReq{} }
func (m *GetFromFriendApplyListReq) String() string { return proto.CompactTextString(m) }
func (*GetFromFriendApplyListReq) ProtoMessage() {}
func (*GetFromFriendApplyListReq) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{26}
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFromFriendApplyListReq.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFromFriendApplyListReq.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (dst *GetFromFriendApplyListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFromFriendApplyListReq.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListReq) XXX_Size() int {
return xxx_messageInfo_GetFromFriendApplyListReq.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetFromFriendApplyListReq.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
var xxx_messageInfo_GetFromFriendApplyListReq proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListReq) 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-29 19:47:13 +08:00
func (m *GetFromFriendApplyListReq) 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-29 19:47:13 +08:00
type GetFromFriendApplyListResp struct {
FriendRequestList []*sdk_ws.FriendRequest `protobuf:"bytes,1,rep,name=friendRequestList" json:"friendRequestList,omitempty"`
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-29 19:47:13 +08:00
func (m *GetFromFriendApplyListResp) Reset() { *m = GetFromFriendApplyListResp{} }
func (m *GetFromFriendApplyListResp) String() string { return proto.CompactTextString(m) }
func (*GetFromFriendApplyListResp) ProtoMessage() {}
func (*GetFromFriendApplyListResp) Descriptor() ([]byte, []int) {
2023-01-30 21:47:29 +08:00
return fileDescriptor_friend_49d6bb15bb9f3775, []int{27}
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetFromFriendApplyListResp.Unmarshal(m, b)
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetFromFriendApplyListResp.Marshal(b, m, deterministic)
2021-12-26 18:47:11 +08:00
}
2023-01-29 19:47:13 +08:00
func (dst *GetFromFriendApplyListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetFromFriendApplyListResp.Merge(dst, src)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListResp) XXX_Size() int {
return xxx_messageInfo_GetFromFriendApplyListResp.Size(m)
2022-09-27 16:59:56 +08:00
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetFromFriendApplyListResp.DiscardUnknown(m)
2023-01-04 11:28:52 +08:00
}
2023-01-29 19:47:13 +08:00
var xxx_messageInfo_GetFromFriendApplyListResp proto.InternalMessageInfo
2021-12-26 18:47:11 +08:00
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListResp) GetFriendRequestList() []*sdk_ws.FriendRequest {
2023-01-04 11:28:52 +08:00
if m != nil {
return m.FriendRequestList
2021-12-26 18:47:11 +08:00
}
return nil
}
2023-01-29 19:47:13 +08:00
func (m *GetFromFriendApplyListResp) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
2023-01-04 11:28:52 +08:00
func init() {
proto.RegisterType((*GetFriendsInfoReq)(nil), "friend.GetFriendsInfoReq")
2023-01-29 19:47:13 +08:00
proto.RegisterType((*GetFriendsInfoResp)(nil), "friend.GetFriendsInfoResp")
2023-01-04 11:28:52 +08:00
proto.RegisterType((*AddFriendReq)(nil), "friend.AddFriendReq")
proto.RegisterType((*AddFriendResp)(nil), "friend.AddFriendResp")
proto.RegisterType((*ImportFriendReq)(nil), "friend.ImportFriendReq")
proto.RegisterType((*ImportFriendResp)(nil), "friend.ImportFriendResp")
2023-01-29 19:47:13 +08:00
proto.RegisterType((*GetToFriendApplyListReq)(nil), "friend.GetToFriendApplyListReq")
proto.RegisterType((*GetToFriendApplyListResp)(nil), "friend.GetToFriendApplyListResp")
2023-01-04 11:28:52 +08:00
proto.RegisterType((*GetFriendListReq)(nil), "friend.GetFriendListReq")
proto.RegisterType((*GetFriendListResp)(nil), "friend.GetFriendListResp")
proto.RegisterType((*AddBlacklistReq)(nil), "friend.AddBlacklistReq")
proto.RegisterType((*AddBlacklistResp)(nil), "friend.AddBlacklistResp")
proto.RegisterType((*RemoveBlacklistReq)(nil), "friend.RemoveBlacklistReq")
proto.RegisterType((*RemoveBlacklistResp)(nil), "friend.RemoveBlacklistResp")
proto.RegisterType((*GetBlacklistReq)(nil), "friend.GetBlacklistReq")
proto.RegisterType((*GetBlacklistResp)(nil), "friend.GetBlacklistResp")
proto.RegisterType((*IsFriendReq)(nil), "friend.IsFriendReq")
proto.RegisterType((*IsFriendResp)(nil), "friend.IsFriendResp")
proto.RegisterType((*IsInBlackListReq)(nil), "friend.IsInBlackListReq")
proto.RegisterType((*IsInBlackListResp)(nil), "friend.IsInBlackListResp")
proto.RegisterType((*DeleteFriendReq)(nil), "friend.DeleteFriendReq")
proto.RegisterType((*DeleteFriendResp)(nil), "friend.DeleteFriendResp")
2023-01-29 19:47:13 +08:00
proto.RegisterType((*FriendApplyResponseReq)(nil), "friend.FriendApplyResponseReq")
proto.RegisterType((*FriendApplyResponseResp)(nil), "friend.FriendApplyResponseResp")
2023-01-04 11:28:52 +08:00
proto.RegisterType((*SetFriendRemarkReq)(nil), "friend.SetFriendRemarkReq")
proto.RegisterType((*SetFriendRemarkResp)(nil), "friend.SetFriendRemarkResp")
2023-01-29 19:47:13 +08:00
proto.RegisterType((*GetFromFriendApplyListReq)(nil), "friend.GetFromFriendApplyListReq")
proto.RegisterType((*GetFromFriendApplyListResp)(nil), "friend.GetFromFriendApplyListResp")
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
// 获取收到的好友申请列表
GetToFriendApplyList(ctx context.Context, in *GetToFriendApplyListReq, opts ...grpc.CallOption) (*GetToFriendApplyListResp, error)
// 获取主动发出去的好友申请列表
GetFromFriendApplyList(ctx context.Context, in *GetFromFriendApplyListReq, opts ...grpc.CallOption) (*GetFromFriendApplyListResp, error)
// 获取好友列表
2021-05-26 19:44:38 +08:00
GetFriendList(ctx context.Context, in *GetFriendListReq, opts ...grpc.CallOption) (*GetFriendListResp, error)
2023-01-29 19:47:13 +08:00
// 添加黑名单
2021-12-26 18:47:11 +08:00
AddBlacklist(ctx context.Context, in *AddBlacklistReq, opts ...grpc.CallOption) (*AddBlacklistResp, error)
2023-01-29 19:47:13 +08:00
// 移除黑名单
2021-12-26 18:47:11 +08:00
RemoveBlacklist(ctx context.Context, in *RemoveBlacklistReq, opts ...grpc.CallOption) (*RemoveBlacklistResp, 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
// 判断是否在黑名单中
2021-05-26 19:44:38 +08:00
IsInBlackList(ctx context.Context, in *IsInBlackListReq, opts ...grpc.CallOption) (*IsInBlackListResp, error)
2023-01-29 19:47:13 +08:00
// 获取黑名单列表
2021-05-26 19:44:38 +08:00
GetBlacklist(ctx context.Context, in *GetBlacklistReq, opts ...grpc.CallOption) (*GetBlacklistResp, 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
// 对好友申请响应(同意或拒绝)
FriendApplyResponse(ctx context.Context, in *FriendApplyResponseReq, opts ...grpc.CallOption) (*FriendApplyResponseResp, error)
// 设置好友备注
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
// 导入好友关系
2021-09-26 14:26:45 +08:00
ImportFriend(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-29 19:47:13 +08:00
func (c *friendClient) GetToFriendApplyList(ctx context.Context, in *GetToFriendApplyListReq, opts ...grpc.CallOption) (*GetToFriendApplyListResp, error) {
out := new(GetToFriendApplyListResp)
err := grpc.Invoke(ctx, "/friend.friend/getToFriendApplyList", in, out, c.cc, opts...)
2021-05-26 19:44:38 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2023-01-29 19:47:13 +08:00
func (c *friendClient) GetFromFriendApplyList(ctx context.Context, in *GetFromFriendApplyListReq, opts ...grpc.CallOption) (*GetFromFriendApplyListResp, error) {
out := new(GetFromFriendApplyListResp)
err := grpc.Invoke(ctx, "/friend.friend/getFromFriendApplyList", 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)
2023-01-04 11:28:52 +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
}
2021-12-26 18:47:11 +08:00
func (c *friendClient) AddBlacklist(ctx context.Context, in *AddBlacklistReq, opts ...grpc.CallOption) (*AddBlacklistResp, error) {
out := new(AddBlacklistResp)
2023-01-04 11:28:52 +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
}
2021-12-26 18:47:11 +08:00
func (c *friendClient) RemoveBlacklist(ctx context.Context, in *RemoveBlacklistReq, opts ...grpc.CallOption) (*RemoveBlacklistResp, error) {
out := new(RemoveBlacklistResp)
2023-01-04 11:28:52 +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)
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
}
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)
2023-01-04 11:28:52 +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)
2023-01-04 11:28:52 +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
}
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-29 19:47:13 +08:00
func (c *friendClient) FriendApplyResponse(ctx context.Context, in *FriendApplyResponseReq, opts ...grpc.CallOption) (*FriendApplyResponseResp, error) {
out := new(FriendApplyResponseResp)
err := grpc.Invoke(ctx, "/friend.friend/friendApplyResponse", 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
}
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)
2023-01-04 11:28:52 +08:00
err := grpc.Invoke(ctx, "/friend.friend/importFriend", 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
// 获取收到的好友申请列表
GetToFriendApplyList(context.Context, *GetToFriendApplyListReq) (*GetToFriendApplyListResp, error)
// 获取主动发出去的好友申请列表
GetFromFriendApplyList(context.Context, *GetFromFriendApplyListReq) (*GetFromFriendApplyListResp, error)
// 获取好友列表
2021-05-26 19:44:38 +08:00
GetFriendList(context.Context, *GetFriendListReq) (*GetFriendListResp, error)
2023-01-29 19:47:13 +08:00
// 添加黑名单
2021-12-26 18:47:11 +08:00
AddBlacklist(context.Context, *AddBlacklistReq) (*AddBlacklistResp, error)
2023-01-29 19:47:13 +08:00
// 移除黑名单
2021-12-26 18:47:11 +08:00
RemoveBlacklist(context.Context, *RemoveBlacklistReq) (*RemoveBlacklistResp, 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
// 判断是否在黑名单中
2021-05-26 19:44:38 +08:00
IsInBlackList(context.Context, *IsInBlackListReq) (*IsInBlackListResp, error)
2023-01-29 19:47:13 +08:00
// 获取黑名单列表
2021-05-26 19:44:38 +08:00
GetBlacklist(context.Context, *GetBlacklistReq) (*GetBlacklistResp, 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
// 对好友申请响应(同意或拒绝)
FriendApplyResponse(context.Context, *FriendApplyResponseReq) (*FriendApplyResponseResp, error)
// 设置好友备注
2021-12-29 14:36:13 +08:00
SetFriendRemark(context.Context, *SetFriendRemarkReq) (*SetFriendRemarkResp, error)
2023-01-29 19:47:13 +08:00
// 导入好友关系
2021-09-26 14:26:45 +08:00
ImportFriend(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-29 19:47:13 +08:00
func _Friend_GetToFriendApplyList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetToFriendApplyListReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-29 19:47:13 +08:00
return srv.(FriendServer).GetToFriendApplyList(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-29 19:47:13 +08:00
FullMethod: "/friend.friend/GetToFriendApplyList",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-29 19:47:13 +08:00
return srv.(FriendServer).GetToFriendApplyList(ctx, req.(*GetToFriendApplyListReq))
2021-05-26 19:44:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2023-01-29 19:47:13 +08:00
func _Friend_GetFromFriendApplyList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetFromFriendApplyListReq)
2021-06-28 15:33:26 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-29 19:47:13 +08:00
return srv.(FriendServer).GetFromFriendApplyList(ctx, in)
2021-06-28 15:33:26 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-29 19:47:13 +08:00
FullMethod: "/friend.friend/GetFromFriendApplyList",
2021-06-28 15:33:26 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-29 19:47:13 +08:00
return srv.(FriendServer).GetFromFriendApplyList(ctx, req.(*GetFromFriendApplyListReq))
2021-06-28 15:33:26 +08:00
}
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)
}
2023-01-29 19:47:13 +08:00
func _Friend_FriendApplyResponse_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(FriendApplyResponseReq)
2021-05-26 19:44:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2023-01-29 19:47:13 +08:00
return srv.(FriendServer).FriendApplyResponse(ctx, in)
2021-05-26 19:44:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2023-01-29 19:47:13 +08:00
FullMethod: "/friend.friend/FriendApplyResponse",
2021-05-26 19:44:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2023-01-29 19:47:13 +08:00
return srv.(FriendServer).FriendApplyResponse(ctx, req.(*FriendApplyResponseReq))
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)
}
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)
}
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-29 19:47:13 +08:00
MethodName: "getToFriendApplyList",
Handler: _Friend_GetToFriendApplyList_Handler,
2021-05-26 19:44:38 +08:00
},
2021-06-28 15:33:26 +08:00
{
2023-01-29 19:47:13 +08:00
MethodName: "getFromFriendApplyList",
Handler: _Friend_GetFromFriendApplyList_Handler,
2021-06-28 15:33:26 +08:00
},
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,
},
{
2023-01-29 19:47:13 +08:00
MethodName: "friendApplyResponse",
Handler: _Friend_FriendApplyResponse_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
{
2021-12-26 18:47:11 +08:00
MethodName: "importFriend",
2021-09-22 20:10:38 +08:00
Handler: _Friend_ImportFriend_Handler,
},
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-30 21:47:29 +08:00
func init() { proto.RegisterFile("friend/friend.proto", fileDescriptor_friend_49d6bb15bb9f3775) }
2023-01-29 19:47:13 +08:00
2023-01-30 21:47:29 +08:00
var fileDescriptor_friend_49d6bb15bb9f3775 = []byte{
// 909 bytes of a gzipped FileDescriptorProto
2023-01-29 19:47:13 +08:00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0x5f, 0x6f, 0xdb, 0x36,
2023-01-30 21:47:29 +08:00
0x10, 0x87, 0x9d, 0x25, 0x88, 0x2f, 0x6e, 0xec, 0x5c, 0xd2, 0x44, 0xd1, 0xb6, 0xc6, 0x21, 0xf6,
2023-01-29 19:47:13 +08:00
0x10, 0x14, 0x68, 0x0c, 0x64, 0x18, 0x30, 0x60, 0x4f, 0x2e, 0xb2, 0x06, 0x1a, 0xea, 0x36, 0x53,
2023-01-30 21:47:29 +08:00
0xb7, 0x01, 0xdb, 0x30, 0x18, 0x6a, 0x4d, 0xbb, 0x42, 0x64, 0x89, 0xd1, 0x29, 0x4d, 0xf3, 0x36,
0xec, 0x61, 0x1f, 0x61, 0x9f, 0x77, 0x10, 0x69, 0x89, 0xd4, 0xbf, 0xb6, 0x68, 0xbd, 0x3d, 0xc9,
0x3c, 0xde, 0xff, 0xa3, 0x7f, 0x3f, 0x12, 0x76, 0x67, 0xb1, 0xcf, 0xc3, 0xe9, 0x50, 0x7d, 0x4e,
0x45, 0x1c, 0x25, 0x11, 0x6e, 0xa8, 0x95, 0x7d, 0xf2, 0x5c, 0xf0, 0xf0, 0x91, 0x33, 0x7e, 0xf4,
0x82, 0xc7, 0x6f, 0x78, 0x3c, 0x14, 0x57, 0xf3, 0xa1, 0xd4, 0x18, 0xd2, 0xf4, 0x6a, 0x72, 0x4b,
0xc3, 0x5b, 0x52, 0x16, 0xec, 0x47, 0xd8, 0xb9, 0xe0, 0xc9, 0x13, 0x69, 0x46, 0x4e, 0x38, 0x8b,
0x5c, 0x7e, 0x8d, 0x0f, 0x00, 0x66, 0x71, 0xb4, 0xf8, 0x99, 0x78, 0xec, 0x9c, 0x5b, 0xad, 0x41,
0xeb, 0xa4, 0xe3, 0x1a, 0x12, 0xfc, 0x02, 0x3a, 0x49, 0xa4, 0x7e, 0x93, 0xd5, 0x1e, 0xac, 0x9d,
0x74, 0x5c, 0x2d, 0x60, 0xbf, 0x03, 0x96, 0x5d, 0x92, 0xc0, 0xef, 0x61, 0x5b, 0x89, 0x52, 0xc9,
0x53, 0x9f, 0x12, 0xab, 0x35, 0x58, 0x3b, 0xd9, 0x3a, 0xfb, 0xf2, 0x94, 0x64, 0x8e, 0x13, 0x4f,
0xf8, 0x13, 0xe1, 0xc5, 0xde, 0x82, 0x4e, 0xb5, 0xa2, 0x5b, 0x32, 0x62, 0x31, 0x74, 0x47, 0xd3,
0xa9, 0x12, 0x7e, 0x48, 0xaa, 0x36, 0x6c, 0x66, 0x99, 0x59, 0x6d, 0xb9, 0x9b, 0xaf, 0x71, 0x1f,
0x36, 0x62, 0x7e, 0x3d, 0xa6, 0xb9, 0xb5, 0x26, 0x77, 0x96, 0x2b, 0xdc, 0x86, 0x36, 0x7f, 0x6b,
0x7d, 0x26, 0x65, 0x6d, 0xfe, 0x96, 0xf5, 0xe0, 0x9e, 0x11, 0x93, 0x04, 0xfb, 0x03, 0x7a, 0xce,
0x42, 0x44, 0x71, 0xa2, 0xf3, 0x78, 0x08, 0x7d, 0xb5, 0x50, 0xbe, 0xf3, 0x02, 0x3b, 0x6e, 0x45,
0x9e, 0xe6, 0xfc, 0x44, 0xe7, 0xac, 0xb2, 0x32, 0x24, 0x0c, 0xa1, 0x5f, 0x74, 0x4f, 0x82, 0xdd,
0xc2, 0xc1, 0x05, 0x4f, 0x7e, 0x8a, 0x94, 0x68, 0x24, 0x44, 0x70, 0x97, 0xfa, 0x4a, 0x43, 0xef,
0xc3, 0xc6, 0x8d, 0x59, 0xfe, 0x72, 0x85, 0xe7, 0x00, 0xc2, 0x9b, 0xfb, 0xa1, 0x97, 0xf8, 0x51,
0x28, 0xc3, 0x6c, 0x9d, 0x7d, 0x55, 0xd3, 0x6d, 0x97, 0x5f, 0xdf, 0x70, 0x4a, 0x2e, 0x73, 0x5d,
0xd7, 0xb0, 0x63, 0x7f, 0xb6, 0xc0, 0xaa, 0x8f, 0x4c, 0x02, 0x9f, 0xc1, 0x4e, 0xde, 0x82, 0xd4,
0x87, 0x31, 0xd7, 0x41, 0xe3, 0x5c, 0x97, 0xba, 0x6e, 0xd5, 0x14, 0xf7, 0x60, 0x3d, 0x89, 0x12,
0x2f, 0x90, 0xd9, 0xae, 0xbb, 0x6a, 0xc1, 0x04, 0xf4, 0xf3, 0x03, 0x95, 0x15, 0x5d, 0x2c, 0xae,
0xf5, 0x71, 0xc5, 0x19, 0xad, 0x6b, 0x9b, 0xad, 0x63, 0xc2, 0xf8, 0x57, 0xe4, 0xc5, 0xae, 0xe6,
0x04, 0x37, 0xd4, 0x38, 0x86, 0xde, 0x68, 0x3a, 0x7d, 0x1c, 0x78, 0xaf, 0xae, 0x82, 0x65, 0x89,
0x9f, 0x70, 0xb4, 0xd3, 0x23, 0x54, 0x74, 0x47, 0x82, 0x5d, 0x02, 0xba, 0x7c, 0x11, 0xbd, 0xe1,
0x2b, 0x8b, 0x72, 0x1f, 0x76, 0x2b, 0x1e, 0x49, 0xb0, 0x08, 0x7a, 0x17, 0x3c, 0x29, 0x44, 0xf9,
0x6f, 0xcf, 0xe8, 0x9d, 0x3c, 0x20, 0x85, 0x24, 0xf0, 0x39, 0xec, 0x48, 0x81, 0x4c, 0xb5, 0x38,
0xb0, 0xe3, 0x9a, 0x00, 0x97, 0x37, 0x2f, 0x03, 0xff, 0x55, 0xa6, 0xec, 0x56, 0x6d, 0x1b, 0xe6,
0xe6, 0xc0, 0x96, 0x43, 0x2b, 0x81, 0x23, 0xf6, 0x10, 0xba, 0xda, 0x15, 0x89, 0x54, 0x37, 0xfd,
0x46, 0x21, 0x71, 0xe9, 0x69, 0xd3, 0xcd, 0xd7, 0xec, 0x19, 0xf4, 0x1d, 0x72, 0x42, 0x99, 0xe5,
0xd3, 0x15, 0x4c, 0x72, 0x08, 0x3b, 0x25, 0x7f, 0xef, 0x49, 0x60, 0x0c, 0xbd, 0x73, 0x1e, 0xf0,
0x84, 0xaf, 0xa6, 0x76, 0x84, 0x7e, 0xd1, 0x1d, 0x09, 0xf6, 0x4f, 0x0b, 0xf6, 0x0d, 0xd0, 0xc9,
0x42, 0x7f, 0x2a, 0xea, 0x33, 0xe8, 0xbe, 0xf6, 0xc2, 0x69, 0xc0, 0x5d, 0x4e, 0x37, 0x41, 0x22,
0xb1, 0x7f, 0xdd, 0x2d, 0xc8, 0x52, 0x82, 0x53, 0xeb, 0x94, 0x1c, 0x14, 0x11, 0x68, 0x01, 0x3b,
0x84, 0x83, 0xda, 0xbc, 0x48, 0xb0, 0xd7, 0x80, 0x2f, 0x78, 0x8e, 0xdb, 0x0b, 0x2f, 0xbe, 0x5a,
0x09, 0x49, 0xa5, 0x8e, 0x34, 0x49, 0xa5, 0xab, 0xf4, 0xbf, 0x57, 0x89, 0x44, 0x82, 0xdd, 0xc1,
0xa1, 0x44, 0xae, 0x68, 0xf1, 0xbf, 0x33, 0xc5, 0x5f, 0x2d, 0xb0, 0x9b, 0x62, 0x2b, 0xae, 0x98,
0x7d, 0x3c, 0x57, 0xcc, 0x3e, 0x8c, 0x2b, 0xce, 0xfe, 0xde, 0x84, 0xe5, 0x25, 0x08, 0xbf, 0x85,
0x8e, 0x97, 0xd1, 0x36, 0xee, 0x9d, 0x2e, 0x2f, 0x4a, 0xe6, 0xed, 0xc1, 0xbe, 0x5f, 0x23, 0x25,
0x81, 0xbf, 0xc2, 0xde, 0xbc, 0x86, 0xf2, 0xf0, 0x28, 0x53, 0x6f, 0xa0, 0x62, 0x7b, 0xf0, 0x6e,
0x05, 0x12, 0x38, 0x81, 0xfd, 0x79, 0x6d, 0x8f, 0xf0, 0xd8, 0xb0, 0xad, 0x9f, 0x9f, 0xcd, 0xde,
0xa7, 0x42, 0x02, 0xcf, 0xe1, 0xde, 0xdc, 0xa4, 0x2e, 0xb4, 0x0a, 0x46, 0x06, 0x87, 0xda, 0x87,
0x0d, 0x3b, 0x24, 0x70, 0x04, 0x5d, 0xcf, 0xe0, 0x0f, 0x3c, 0x30, 0x1a, 0x65, 0x02, 0xbb, 0x6d,
0xd5, 0x6f, 0x90, 0xc0, 0x1f, 0xa0, 0x17, 0x17, 0xc9, 0x01, 0xed, 0x4c, 0xb9, 0xca, 0x43, 0xf6,
0xe7, 0x8d, 0x7b, 0x24, 0xf0, 0x1b, 0xd8, 0xf4, 0x97, 0xd0, 0x88, 0xbb, 0x99, 0xa2, 0x81, 0xbb,
0xf6, 0x5e, 0x55, 0xa8, 0x7a, 0xe1, 0x9b, 0xa8, 0xa6, 0x7b, 0x51, 0x06, 0x4f, 0xdd, 0x8b, 0x2a,
0x0c, 0x8e, 0xa0, 0x3b, 0x37, 0xd8, 0x45, 0xf7, 0xa2, 0x44, 0x72, 0xb6, 0x55, 0xbf, 0xa1, 0x5c,
0x4c, 0x0d, 0x78, 0xd3, 0x2e, 0x4a, 0x18, 0xaa, 0x5d, 0x94, 0xd1, 0x10, 0x7f, 0xc9, 0x6e, 0xfc,
0x05, 0xd0, 0xc1, 0x07, 0x99, 0x41, 0x3d, 0x52, 0xda, 0x47, 0xef, 0xdc, 0x57, 0x63, 0xa2, 0x22,
0x8e, 0xe8, 0x31, 0x55, 0xa1, 0x4c, 0x8f, 0xa9, 0x06, 0x7c, 0xd2, 0x32, 0x7d, 0xe3, 0xe2, 0xaa,
0xcb, 0x2c, 0xdd, 0x96, 0x75, 0x99, 0xe5, 0x7b, 0x2e, 0x5e, 0xc0, 0xf6, 0xbc, 0xf0, 0x78, 0xc0,
0xea, 0x29, 0xcd, 0xde, 0x29, 0xb6, 0xdd, 0xb4, 0x45, 0xe2, 0xf1, 0xf1, 0x6f, 0x47, 0xe9, 0x23,
0x68, 0xe2, 0x8c, 0x8d, 0xd7, 0x8f, 0x52, 0xff, 0x4e, 0x7d, 0x5e, 0x6e, 0x48, 0xe1, 0xd7, 0xff,
0x06, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x16, 0xac, 0xa2, 0x4b, 0x0d, 0x00, 0x00,
2023-01-04 11:28:52 +08:00
}