| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977 | // Code generated by protoc-gen-go-grpc. DO NOT EDIT.package partnerimport (	context "context"	chat "git.ikuban.com/server/pw-protobuf/api/chat"	common "git.ikuban.com/server/pw-protobuf/api/common"	statistics "git.ikuban.com/server/pw-protobuf/api/statistics"	grpc "google.golang.org/grpc"	codes "google.golang.org/grpc/codes"	status "google.golang.org/grpc/status"	emptypb "google.golang.org/protobuf/types/known/emptypb")// This is a compile-time assertion to ensure that this generated file// is compatible with the grpc package it is being compiled against.// Requires gRPC-Go v1.32.0 or later.const _ = grpc.SupportPackageIsVersion7// PartnerClient is the client API for Partner service.//// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.type PartnerClient interface {	// 获取接待员的个人信息	GetPartnerInfo(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PartnerInfo, error)	// 获取接待员的金额信息	GetPartnerBalance(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PartnerBalance, error)	GetPartnerDBBalance(ctx context.Context, in *common.PartnerIDParam, opts ...grpc.CallOption) (*PartnerDBBalance, error)	// 获取用户详情	GetPartnerDBMsg(ctx context.Context, in *common.PersonIDParam, opts ...grpc.CallOption) (*common.PersonMsg, error)	// 获取接待员的部分信息	GetPartnerMessage(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PartnerMessage, error)	// 获取接待员访问数详情	GetPartnerLookNum(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*statistics.LookMessageReply, error)	// 接待员发送验证码	SendPhoneCode(ctx context.Context, in *common.SendPhoneCodeRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)	// 接待员验证验证码	CheckPhoneCode(ctx context.Context, in *common.CheckPhoneCodeRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)	// 获取接待员的确认通过页面信息	GetPartnerCircleInfo(ctx context.Context, in *common.PartnerIDParam, opts ...grpc.CallOption) (*common.AddFriendMessageInfo, error)	// 更新接待员的信息	UpdatePartnerInformation(ctx context.Context, in *common.UpdateInformationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)	GetRandomPartnerInfo(ctx context.Context, in *GetRandomPartnerRequest, opts ...grpc.CallOption) (*RandomPartnerInfo, error)	// 接待员获取ta的主页信息	PartnerGetHomeInfo(ctx context.Context, in *common.PersonParam, opts ...grpc.CallOption) (*common.HomeInfo, error)	// 接待员获取ta的主页访客、关注数	PartnerGetPersonLikedAndLooked(ctx context.Context, in *common.PersonParam, opts ...grpc.CallOption) (*common.LookedAndLikedNum, error)	// 查看看过我的列表	FindLookList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*statistics.LookAndLikeListReply, error)	// 通过接待员IDs查看接待员信息列表	FindPartnerDBList(ctx context.Context, in *common.PersonIDList, opts ...grpc.CallOption) (*common.PersonDBReply, error)	// 微信SDK初始化	WxConf(ctx context.Context, in *common.WxConfReq, opts ...grpc.CallOption) (*common.WxConfResponse, error)	// 创建用户与接待员的关联	CreateUserPartnerRoom(ctx context.Context, in *common.PersonIDParam, opts ...grpc.CallOption) (*chat.RoomReply, error)	// 获取标签列表	FindTagListBySex(ctx context.Context, in *common.SexReq, opts ...grpc.CallOption) (*common.TagListReply, error)	// 获取在线列表	FindOnlineList(ctx context.Context, in *common.ListPage2Request, opts ...grpc.CallOption) (*common.OnlinePersonListReply, error)	// 未读列表(排队中)	FindUnReplyRoomList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*chat.PartnerFindRoomListReply, error)	// 七天内列表(当前会话)	FindWithinSevenDayRoomList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*chat.PartnerFindRoomListReply, error)	// 七天外列表(更早的聊天记录)	FindOverSevenDayRoomList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*chat.PartnerFindRoomListReply, error)	// 接待者查询聊天记录	FindChatRecordList(ctx context.Context, in *common.FindChatRecordListRequest, opts ...grpc.CallOption) (*common.ChatRecordListReply, error)	// 接待者查询房间信息	FindChatRoomMsg(ctx context.Context, in *common.FindChatRoomMsgRequest, opts ...grpc.CallOption) (*common.ChatRoomMsg, error)}type partnerClient struct {	cc grpc.ClientConnInterface}func NewPartnerClient(cc grpc.ClientConnInterface) PartnerClient {	return &partnerClient{cc}}func (c *partnerClient) GetPartnerInfo(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PartnerInfo, error) {	out := new(PartnerInfo)	err := c.cc.Invoke(ctx, "/api.partner.Partner/GetPartnerInfo", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) GetPartnerBalance(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PartnerBalance, error) {	out := new(PartnerBalance)	err := c.cc.Invoke(ctx, "/api.partner.Partner/GetPartnerBalance", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) GetPartnerDBBalance(ctx context.Context, in *common.PartnerIDParam, opts ...grpc.CallOption) (*PartnerDBBalance, error) {	out := new(PartnerDBBalance)	err := c.cc.Invoke(ctx, "/api.partner.Partner/GetPartnerDBBalance", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) GetPartnerDBMsg(ctx context.Context, in *common.PersonIDParam, opts ...grpc.CallOption) (*common.PersonMsg, error) {	out := new(common.PersonMsg)	err := c.cc.Invoke(ctx, "/api.partner.Partner/GetPartnerDBMsg", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) GetPartnerMessage(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PartnerMessage, error) {	out := new(PartnerMessage)	err := c.cc.Invoke(ctx, "/api.partner.Partner/GetPartnerMessage", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) GetPartnerLookNum(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*statistics.LookMessageReply, error) {	out := new(statistics.LookMessageReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/GetPartnerLookNum", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) SendPhoneCode(ctx context.Context, in *common.SendPhoneCodeRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {	out := new(emptypb.Empty)	err := c.cc.Invoke(ctx, "/api.partner.Partner/SendPhoneCode", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) CheckPhoneCode(ctx context.Context, in *common.CheckPhoneCodeRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {	out := new(emptypb.Empty)	err := c.cc.Invoke(ctx, "/api.partner.Partner/CheckPhoneCode", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) GetPartnerCircleInfo(ctx context.Context, in *common.PartnerIDParam, opts ...grpc.CallOption) (*common.AddFriendMessageInfo, error) {	out := new(common.AddFriendMessageInfo)	err := c.cc.Invoke(ctx, "/api.partner.Partner/GetPartnerCircleInfo", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) UpdatePartnerInformation(ctx context.Context, in *common.UpdateInformationRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {	out := new(emptypb.Empty)	err := c.cc.Invoke(ctx, "/api.partner.Partner/UpdatePartnerInformation", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) GetRandomPartnerInfo(ctx context.Context, in *GetRandomPartnerRequest, opts ...grpc.CallOption) (*RandomPartnerInfo, error) {	out := new(RandomPartnerInfo)	err := c.cc.Invoke(ctx, "/api.partner.Partner/GetRandomPartnerInfo", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) PartnerGetHomeInfo(ctx context.Context, in *common.PersonParam, opts ...grpc.CallOption) (*common.HomeInfo, error) {	out := new(common.HomeInfo)	err := c.cc.Invoke(ctx, "/api.partner.Partner/PartnerGetHomeInfo", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) PartnerGetPersonLikedAndLooked(ctx context.Context, in *common.PersonParam, opts ...grpc.CallOption) (*common.LookedAndLikedNum, error) {	out := new(common.LookedAndLikedNum)	err := c.cc.Invoke(ctx, "/api.partner.Partner/PartnerGetPersonLikedAndLooked", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindLookList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*statistics.LookAndLikeListReply, error) {	out := new(statistics.LookAndLikeListReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindLookList", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindPartnerDBList(ctx context.Context, in *common.PersonIDList, opts ...grpc.CallOption) (*common.PersonDBReply, error) {	out := new(common.PersonDBReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindPartnerDBList", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) WxConf(ctx context.Context, in *common.WxConfReq, opts ...grpc.CallOption) (*common.WxConfResponse, error) {	out := new(common.WxConfResponse)	err := c.cc.Invoke(ctx, "/api.partner.Partner/WxConf", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) CreateUserPartnerRoom(ctx context.Context, in *common.PersonIDParam, opts ...grpc.CallOption) (*chat.RoomReply, error) {	out := new(chat.RoomReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/CreateUserPartnerRoom", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindTagListBySex(ctx context.Context, in *common.SexReq, opts ...grpc.CallOption) (*common.TagListReply, error) {	out := new(common.TagListReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindTagListBySex", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindOnlineList(ctx context.Context, in *common.ListPage2Request, opts ...grpc.CallOption) (*common.OnlinePersonListReply, error) {	out := new(common.OnlinePersonListReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindOnlineList", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindUnReplyRoomList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*chat.PartnerFindRoomListReply, error) {	out := new(chat.PartnerFindRoomListReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindUnReplyRoomList", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindWithinSevenDayRoomList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*chat.PartnerFindRoomListReply, error) {	out := new(chat.PartnerFindRoomListReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindWithinSevenDayRoomList", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindOverSevenDayRoomList(ctx context.Context, in *common.ListPageRequest, opts ...grpc.CallOption) (*chat.PartnerFindRoomListReply, error) {	out := new(chat.PartnerFindRoomListReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindOverSevenDayRoomList", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindChatRecordList(ctx context.Context, in *common.FindChatRecordListRequest, opts ...grpc.CallOption) (*common.ChatRecordListReply, error) {	out := new(common.ChatRecordListReply)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindChatRecordList", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}func (c *partnerClient) FindChatRoomMsg(ctx context.Context, in *common.FindChatRoomMsgRequest, opts ...grpc.CallOption) (*common.ChatRoomMsg, error) {	out := new(common.ChatRoomMsg)	err := c.cc.Invoke(ctx, "/api.partner.Partner/FindChatRoomMsg", in, out, opts...)	if err != nil {		return nil, err	}	return out, nil}// PartnerServer is the server API for Partner service.// All implementations must embed UnimplementedPartnerServer// for forward compatibilitytype PartnerServer interface {	// 获取接待员的个人信息	GetPartnerInfo(context.Context, *emptypb.Empty) (*PartnerInfo, error)	// 获取接待员的金额信息	GetPartnerBalance(context.Context, *emptypb.Empty) (*PartnerBalance, error)	GetPartnerDBBalance(context.Context, *common.PartnerIDParam) (*PartnerDBBalance, error)	// 获取用户详情	GetPartnerDBMsg(context.Context, *common.PersonIDParam) (*common.PersonMsg, error)	// 获取接待员的部分信息	GetPartnerMessage(context.Context, *emptypb.Empty) (*PartnerMessage, error)	// 获取接待员访问数详情	GetPartnerLookNum(context.Context, *emptypb.Empty) (*statistics.LookMessageReply, error)	// 接待员发送验证码	SendPhoneCode(context.Context, *common.SendPhoneCodeRequest) (*emptypb.Empty, error)	// 接待员验证验证码	CheckPhoneCode(context.Context, *common.CheckPhoneCodeRequest) (*emptypb.Empty, error)	// 获取接待员的确认通过页面信息	GetPartnerCircleInfo(context.Context, *common.PartnerIDParam) (*common.AddFriendMessageInfo, error)	// 更新接待员的信息	UpdatePartnerInformation(context.Context, *common.UpdateInformationRequest) (*emptypb.Empty, error)	GetRandomPartnerInfo(context.Context, *GetRandomPartnerRequest) (*RandomPartnerInfo, error)	// 接待员获取ta的主页信息	PartnerGetHomeInfo(context.Context, *common.PersonParam) (*common.HomeInfo, error)	// 接待员获取ta的主页访客、关注数	PartnerGetPersonLikedAndLooked(context.Context, *common.PersonParam) (*common.LookedAndLikedNum, error)	// 查看看过我的列表	FindLookList(context.Context, *common.ListPageRequest) (*statistics.LookAndLikeListReply, error)	// 通过接待员IDs查看接待员信息列表	FindPartnerDBList(context.Context, *common.PersonIDList) (*common.PersonDBReply, error)	// 微信SDK初始化	WxConf(context.Context, *common.WxConfReq) (*common.WxConfResponse, error)	// 创建用户与接待员的关联	CreateUserPartnerRoom(context.Context, *common.PersonIDParam) (*chat.RoomReply, error)	// 获取标签列表	FindTagListBySex(context.Context, *common.SexReq) (*common.TagListReply, error)	// 获取在线列表	FindOnlineList(context.Context, *common.ListPage2Request) (*common.OnlinePersonListReply, error)	// 未读列表(排队中)	FindUnReplyRoomList(context.Context, *common.ListPageRequest) (*chat.PartnerFindRoomListReply, error)	// 七天内列表(当前会话)	FindWithinSevenDayRoomList(context.Context, *common.ListPageRequest) (*chat.PartnerFindRoomListReply, error)	// 七天外列表(更早的聊天记录)	FindOverSevenDayRoomList(context.Context, *common.ListPageRequest) (*chat.PartnerFindRoomListReply, error)	// 接待者查询聊天记录	FindChatRecordList(context.Context, *common.FindChatRecordListRequest) (*common.ChatRecordListReply, error)	// 接待者查询房间信息	FindChatRoomMsg(context.Context, *common.FindChatRoomMsgRequest) (*common.ChatRoomMsg, error)	mustEmbedUnimplementedPartnerServer()}// UnimplementedPartnerServer must be embedded to have forward compatible implementations.type UnimplementedPartnerServer struct {}func (UnimplementedPartnerServer) GetPartnerInfo(context.Context, *emptypb.Empty) (*PartnerInfo, error) {	return nil, status.Errorf(codes.Unimplemented, "method GetPartnerInfo not implemented")}func (UnimplementedPartnerServer) GetPartnerBalance(context.Context, *emptypb.Empty) (*PartnerBalance, error) {	return nil, status.Errorf(codes.Unimplemented, "method GetPartnerBalance not implemented")}func (UnimplementedPartnerServer) GetPartnerDBBalance(context.Context, *common.PartnerIDParam) (*PartnerDBBalance, error) {	return nil, status.Errorf(codes.Unimplemented, "method GetPartnerDBBalance not implemented")}func (UnimplementedPartnerServer) GetPartnerDBMsg(context.Context, *common.PersonIDParam) (*common.PersonMsg, error) {	return nil, status.Errorf(codes.Unimplemented, "method GetPartnerDBMsg not implemented")}func (UnimplementedPartnerServer) GetPartnerMessage(context.Context, *emptypb.Empty) (*PartnerMessage, error) {	return nil, status.Errorf(codes.Unimplemented, "method GetPartnerMessage not implemented")}func (UnimplementedPartnerServer) GetPartnerLookNum(context.Context, *emptypb.Empty) (*statistics.LookMessageReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method GetPartnerLookNum not implemented")}func (UnimplementedPartnerServer) SendPhoneCode(context.Context, *common.SendPhoneCodeRequest) (*emptypb.Empty, error) {	return nil, status.Errorf(codes.Unimplemented, "method SendPhoneCode not implemented")}func (UnimplementedPartnerServer) CheckPhoneCode(context.Context, *common.CheckPhoneCodeRequest) (*emptypb.Empty, error) {	return nil, status.Errorf(codes.Unimplemented, "method CheckPhoneCode not implemented")}func (UnimplementedPartnerServer) GetPartnerCircleInfo(context.Context, *common.PartnerIDParam) (*common.AddFriendMessageInfo, error) {	return nil, status.Errorf(codes.Unimplemented, "method GetPartnerCircleInfo not implemented")}func (UnimplementedPartnerServer) UpdatePartnerInformation(context.Context, *common.UpdateInformationRequest) (*emptypb.Empty, error) {	return nil, status.Errorf(codes.Unimplemented, "method UpdatePartnerInformation not implemented")}func (UnimplementedPartnerServer) GetRandomPartnerInfo(context.Context, *GetRandomPartnerRequest) (*RandomPartnerInfo, error) {	return nil, status.Errorf(codes.Unimplemented, "method GetRandomPartnerInfo not implemented")}func (UnimplementedPartnerServer) PartnerGetHomeInfo(context.Context, *common.PersonParam) (*common.HomeInfo, error) {	return nil, status.Errorf(codes.Unimplemented, "method PartnerGetHomeInfo not implemented")}func (UnimplementedPartnerServer) PartnerGetPersonLikedAndLooked(context.Context, *common.PersonParam) (*common.LookedAndLikedNum, error) {	return nil, status.Errorf(codes.Unimplemented, "method PartnerGetPersonLikedAndLooked not implemented")}func (UnimplementedPartnerServer) FindLookList(context.Context, *common.ListPageRequest) (*statistics.LookAndLikeListReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindLookList not implemented")}func (UnimplementedPartnerServer) FindPartnerDBList(context.Context, *common.PersonIDList) (*common.PersonDBReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindPartnerDBList not implemented")}func (UnimplementedPartnerServer) WxConf(context.Context, *common.WxConfReq) (*common.WxConfResponse, error) {	return nil, status.Errorf(codes.Unimplemented, "method WxConf not implemented")}func (UnimplementedPartnerServer) CreateUserPartnerRoom(context.Context, *common.PersonIDParam) (*chat.RoomReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method CreateUserPartnerRoom not implemented")}func (UnimplementedPartnerServer) FindTagListBySex(context.Context, *common.SexReq) (*common.TagListReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindTagListBySex not implemented")}func (UnimplementedPartnerServer) FindOnlineList(context.Context, *common.ListPage2Request) (*common.OnlinePersonListReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindOnlineList not implemented")}func (UnimplementedPartnerServer) FindUnReplyRoomList(context.Context, *common.ListPageRequest) (*chat.PartnerFindRoomListReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindUnReplyRoomList not implemented")}func (UnimplementedPartnerServer) FindWithinSevenDayRoomList(context.Context, *common.ListPageRequest) (*chat.PartnerFindRoomListReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindWithinSevenDayRoomList not implemented")}func (UnimplementedPartnerServer) FindOverSevenDayRoomList(context.Context, *common.ListPageRequest) (*chat.PartnerFindRoomListReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindOverSevenDayRoomList not implemented")}func (UnimplementedPartnerServer) FindChatRecordList(context.Context, *common.FindChatRecordListRequest) (*common.ChatRecordListReply, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindChatRecordList not implemented")}func (UnimplementedPartnerServer) FindChatRoomMsg(context.Context, *common.FindChatRoomMsgRequest) (*common.ChatRoomMsg, error) {	return nil, status.Errorf(codes.Unimplemented, "method FindChatRoomMsg not implemented")}func (UnimplementedPartnerServer) mustEmbedUnimplementedPartnerServer() {}// UnsafePartnerServer may be embedded to opt out of forward compatibility for this service.// Use of this interface is not recommended, as added methods to PartnerServer will// result in compilation errors.type UnsafePartnerServer interface {	mustEmbedUnimplementedPartnerServer()}func RegisterPartnerServer(s grpc.ServiceRegistrar, srv PartnerServer) {	s.RegisterService(&Partner_ServiceDesc, srv)}func _Partner_GetPartnerInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(emptypb.Empty)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).GetPartnerInfo(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/GetPartnerInfo",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).GetPartnerInfo(ctx, req.(*emptypb.Empty))	}	return interceptor(ctx, in, info, handler)}func _Partner_GetPartnerBalance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(emptypb.Empty)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).GetPartnerBalance(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/GetPartnerBalance",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).GetPartnerBalance(ctx, req.(*emptypb.Empty))	}	return interceptor(ctx, in, info, handler)}func _Partner_GetPartnerDBBalance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.PartnerIDParam)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).GetPartnerDBBalance(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/GetPartnerDBBalance",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).GetPartnerDBBalance(ctx, req.(*common.PartnerIDParam))	}	return interceptor(ctx, in, info, handler)}func _Partner_GetPartnerDBMsg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.PersonIDParam)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).GetPartnerDBMsg(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/GetPartnerDBMsg",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).GetPartnerDBMsg(ctx, req.(*common.PersonIDParam))	}	return interceptor(ctx, in, info, handler)}func _Partner_GetPartnerMessage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(emptypb.Empty)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).GetPartnerMessage(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/GetPartnerMessage",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).GetPartnerMessage(ctx, req.(*emptypb.Empty))	}	return interceptor(ctx, in, info, handler)}func _Partner_GetPartnerLookNum_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(emptypb.Empty)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).GetPartnerLookNum(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/GetPartnerLookNum",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).GetPartnerLookNum(ctx, req.(*emptypb.Empty))	}	return interceptor(ctx, in, info, handler)}func _Partner_SendPhoneCode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.SendPhoneCodeRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).SendPhoneCode(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/SendPhoneCode",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).SendPhoneCode(ctx, req.(*common.SendPhoneCodeRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_CheckPhoneCode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.CheckPhoneCodeRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).CheckPhoneCode(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/CheckPhoneCode",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).CheckPhoneCode(ctx, req.(*common.CheckPhoneCodeRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_GetPartnerCircleInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.PartnerIDParam)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).GetPartnerCircleInfo(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/GetPartnerCircleInfo",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).GetPartnerCircleInfo(ctx, req.(*common.PartnerIDParam))	}	return interceptor(ctx, in, info, handler)}func _Partner_UpdatePartnerInformation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.UpdateInformationRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).UpdatePartnerInformation(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/UpdatePartnerInformation",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).UpdatePartnerInformation(ctx, req.(*common.UpdateInformationRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_GetRandomPartnerInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(GetRandomPartnerRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).GetRandomPartnerInfo(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/GetRandomPartnerInfo",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).GetRandomPartnerInfo(ctx, req.(*GetRandomPartnerRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_PartnerGetHomeInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.PersonParam)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).PartnerGetHomeInfo(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/PartnerGetHomeInfo",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).PartnerGetHomeInfo(ctx, req.(*common.PersonParam))	}	return interceptor(ctx, in, info, handler)}func _Partner_PartnerGetPersonLikedAndLooked_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.PersonParam)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).PartnerGetPersonLikedAndLooked(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/PartnerGetPersonLikedAndLooked",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).PartnerGetPersonLikedAndLooked(ctx, req.(*common.PersonParam))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindLookList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.ListPageRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindLookList(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindLookList",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindLookList(ctx, req.(*common.ListPageRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindPartnerDBList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.PersonIDList)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindPartnerDBList(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindPartnerDBList",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindPartnerDBList(ctx, req.(*common.PersonIDList))	}	return interceptor(ctx, in, info, handler)}func _Partner_WxConf_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.WxConfReq)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).WxConf(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/WxConf",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).WxConf(ctx, req.(*common.WxConfReq))	}	return interceptor(ctx, in, info, handler)}func _Partner_CreateUserPartnerRoom_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.PersonIDParam)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).CreateUserPartnerRoom(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/CreateUserPartnerRoom",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).CreateUserPartnerRoom(ctx, req.(*common.PersonIDParam))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindTagListBySex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.SexReq)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindTagListBySex(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindTagListBySex",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindTagListBySex(ctx, req.(*common.SexReq))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindOnlineList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.ListPage2Request)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindOnlineList(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindOnlineList",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindOnlineList(ctx, req.(*common.ListPage2Request))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindUnReplyRoomList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.ListPageRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindUnReplyRoomList(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindUnReplyRoomList",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindUnReplyRoomList(ctx, req.(*common.ListPageRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindWithinSevenDayRoomList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.ListPageRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindWithinSevenDayRoomList(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindWithinSevenDayRoomList",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindWithinSevenDayRoomList(ctx, req.(*common.ListPageRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindOverSevenDayRoomList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.ListPageRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindOverSevenDayRoomList(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindOverSevenDayRoomList",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindOverSevenDayRoomList(ctx, req.(*common.ListPageRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindChatRecordList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.FindChatRecordListRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindChatRecordList(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindChatRecordList",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindChatRecordList(ctx, req.(*common.FindChatRecordListRequest))	}	return interceptor(ctx, in, info, handler)}func _Partner_FindChatRoomMsg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {	in := new(common.FindChatRoomMsgRequest)	if err := dec(in); err != nil {		return nil, err	}	if interceptor == nil {		return srv.(PartnerServer).FindChatRoomMsg(ctx, in)	}	info := &grpc.UnaryServerInfo{		Server:     srv,		FullMethod: "/api.partner.Partner/FindChatRoomMsg",	}	handler := func(ctx context.Context, req interface{}) (interface{}, error) {		return srv.(PartnerServer).FindChatRoomMsg(ctx, req.(*common.FindChatRoomMsgRequest))	}	return interceptor(ctx, in, info, handler)}// Partner_ServiceDesc is the grpc.ServiceDesc for Partner service.// It's only intended for direct use with grpc.RegisterService,// and not to be introspected or modified (even as a copy)var Partner_ServiceDesc = grpc.ServiceDesc{	ServiceName: "api.partner.Partner",	HandlerType: (*PartnerServer)(nil),	Methods: []grpc.MethodDesc{		{			MethodName: "GetPartnerInfo",			Handler:    _Partner_GetPartnerInfo_Handler,		},		{			MethodName: "GetPartnerBalance",			Handler:    _Partner_GetPartnerBalance_Handler,		},		{			MethodName: "GetPartnerDBBalance",			Handler:    _Partner_GetPartnerDBBalance_Handler,		},		{			MethodName: "GetPartnerDBMsg",			Handler:    _Partner_GetPartnerDBMsg_Handler,		},		{			MethodName: "GetPartnerMessage",			Handler:    _Partner_GetPartnerMessage_Handler,		},		{			MethodName: "GetPartnerLookNum",			Handler:    _Partner_GetPartnerLookNum_Handler,		},		{			MethodName: "SendPhoneCode",			Handler:    _Partner_SendPhoneCode_Handler,		},		{			MethodName: "CheckPhoneCode",			Handler:    _Partner_CheckPhoneCode_Handler,		},		{			MethodName: "GetPartnerCircleInfo",			Handler:    _Partner_GetPartnerCircleInfo_Handler,		},		{			MethodName: "UpdatePartnerInformation",			Handler:    _Partner_UpdatePartnerInformation_Handler,		},		{			MethodName: "GetRandomPartnerInfo",			Handler:    _Partner_GetRandomPartnerInfo_Handler,		},		{			MethodName: "PartnerGetHomeInfo",			Handler:    _Partner_PartnerGetHomeInfo_Handler,		},		{			MethodName: "PartnerGetPersonLikedAndLooked",			Handler:    _Partner_PartnerGetPersonLikedAndLooked_Handler,		},		{			MethodName: "FindLookList",			Handler:    _Partner_FindLookList_Handler,		},		{			MethodName: "FindPartnerDBList",			Handler:    _Partner_FindPartnerDBList_Handler,		},		{			MethodName: "WxConf",			Handler:    _Partner_WxConf_Handler,		},		{			MethodName: "CreateUserPartnerRoom",			Handler:    _Partner_CreateUserPartnerRoom_Handler,		},		{			MethodName: "FindTagListBySex",			Handler:    _Partner_FindTagListBySex_Handler,		},		{			MethodName: "FindOnlineList",			Handler:    _Partner_FindOnlineList_Handler,		},		{			MethodName: "FindUnReplyRoomList",			Handler:    _Partner_FindUnReplyRoomList_Handler,		},		{			MethodName: "FindWithinSevenDayRoomList",			Handler:    _Partner_FindWithinSevenDayRoomList_Handler,		},		{			MethodName: "FindOverSevenDayRoomList",			Handler:    _Partner_FindOverSevenDayRoomList_Handler,		},		{			MethodName: "FindChatRecordList",			Handler:    _Partner_FindChatRecordList_Handler,		},		{			MethodName: "FindChatRoomMsg",			Handler:    _Partner_FindChatRoomMsg_Handler,		},	},	Streams:  []grpc.StreamDesc{},	Metadata: "partner.proto",}
 |