447 lines
16 KiB
Go
447 lines
16 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.6.2
|
|
// - protoc v7.35.1
|
|
// source: module/ec/market/proto/agency.proto
|
|
|
|
package market
|
|
|
|
import (
|
|
protobuf "bsm/full/protobuf"
|
|
context "context"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
)
|
|
|
|
// 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.64.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion9
|
|
|
|
const (
|
|
Agency_Login_FullMethodName = "/market.Agency/Login"
|
|
Agency_Create_FullMethodName = "/market.Agency/Create"
|
|
Agency_Get_FullMethodName = "/market.Agency/Get"
|
|
Agency_Fetch_FullMethodName = "/market.Agency/Fetch"
|
|
Agency_Modify_FullMethodName = "/market.Agency/Modify"
|
|
Agency_Delete_FullMethodName = "/market.Agency/Delete"
|
|
Agency_SetPassword_FullMethodName = "/market.Agency/SetPassword"
|
|
Agency_Pending_FullMethodName = "/market.Agency/Pending"
|
|
Agency_Approve_FullMethodName = "/market.Agency/Approve"
|
|
)
|
|
|
|
// AgencyClient is the client API for Agency 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 AgencyClient interface {
|
|
// 登录
|
|
Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*protobuf.MarketLoginReply, error)
|
|
// 新增代理商
|
|
Create(ctx context.Context, in *MarketAgenctyItem, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error)
|
|
// 获取一个代理商
|
|
Get(ctx context.Context, in *protobuf.IdentRequest, opts ...grpc.CallOption) (*MarketAgenctyItem, error)
|
|
// 代理商列表
|
|
Fetch(ctx context.Context, in *protobuf.MarketFetchRequest, opts ...grpc.CallOption) (*AgencyReply, error)
|
|
// 更新代理商数据
|
|
Modify(ctx context.Context, in *MarketAgenctyItem, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error)
|
|
// 删除一个代理商
|
|
Delete(ctx context.Context, in *protobuf.IdentRequest, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error)
|
|
// 更新密码
|
|
SetPassword(ctx context.Context, in *SetPasswordRequest, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error)
|
|
// 待审核
|
|
Pending(ctx context.Context, in *protobuf.MarketFetchRequest, opts ...grpc.CallOption) (*AgencyReply, error)
|
|
// 审核
|
|
Approve(ctx context.Context, in *ApproveRequest, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error)
|
|
}
|
|
|
|
type agencyClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewAgencyClient(cc grpc.ClientConnInterface) AgencyClient {
|
|
return &agencyClient{cc}
|
|
}
|
|
|
|
func (c *agencyClient) Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*protobuf.MarketLoginReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(protobuf.MarketLoginReply)
|
|
err := c.cc.Invoke(ctx, Agency_Login_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *agencyClient) Create(ctx context.Context, in *MarketAgenctyItem, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(protobuf.IdentityStatusReply)
|
|
err := c.cc.Invoke(ctx, Agency_Create_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *agencyClient) Get(ctx context.Context, in *protobuf.IdentRequest, opts ...grpc.CallOption) (*MarketAgenctyItem, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(MarketAgenctyItem)
|
|
err := c.cc.Invoke(ctx, Agency_Get_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *agencyClient) Fetch(ctx context.Context, in *protobuf.MarketFetchRequest, opts ...grpc.CallOption) (*AgencyReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(AgencyReply)
|
|
err := c.cc.Invoke(ctx, Agency_Fetch_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *agencyClient) Modify(ctx context.Context, in *MarketAgenctyItem, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(protobuf.IdentityStatusReply)
|
|
err := c.cc.Invoke(ctx, Agency_Modify_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *agencyClient) Delete(ctx context.Context, in *protobuf.IdentRequest, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(protobuf.IdentityStatusReply)
|
|
err := c.cc.Invoke(ctx, Agency_Delete_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *agencyClient) SetPassword(ctx context.Context, in *SetPasswordRequest, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(protobuf.IdentityStatusReply)
|
|
err := c.cc.Invoke(ctx, Agency_SetPassword_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *agencyClient) Pending(ctx context.Context, in *protobuf.MarketFetchRequest, opts ...grpc.CallOption) (*AgencyReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(AgencyReply)
|
|
err := c.cc.Invoke(ctx, Agency_Pending_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *agencyClient) Approve(ctx context.Context, in *ApproveRequest, opts ...grpc.CallOption) (*protobuf.IdentityStatusReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(protobuf.IdentityStatusReply)
|
|
err := c.cc.Invoke(ctx, Agency_Approve_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// AgencyServer is the server API for Agency service.
|
|
// All implementations should embed UnimplementedAgencyServer
|
|
// for forward compatibility.
|
|
//
|
|
// 营销服务 - 代理商
|
|
type AgencyServer interface {
|
|
// 登录
|
|
Login(context.Context, *LoginRequest) (*protobuf.MarketLoginReply, error)
|
|
// 新增代理商
|
|
Create(context.Context, *MarketAgenctyItem) (*protobuf.IdentityStatusReply, error)
|
|
// 获取一个代理商
|
|
Get(context.Context, *protobuf.IdentRequest) (*MarketAgenctyItem, error)
|
|
// 代理商列表
|
|
Fetch(context.Context, *protobuf.MarketFetchRequest) (*AgencyReply, error)
|
|
// 更新代理商数据
|
|
Modify(context.Context, *MarketAgenctyItem) (*protobuf.IdentityStatusReply, error)
|
|
// 删除一个代理商
|
|
Delete(context.Context, *protobuf.IdentRequest) (*protobuf.IdentityStatusReply, error)
|
|
// 更新密码
|
|
SetPassword(context.Context, *SetPasswordRequest) (*protobuf.IdentityStatusReply, error)
|
|
// 待审核
|
|
Pending(context.Context, *protobuf.MarketFetchRequest) (*AgencyReply, error)
|
|
// 审核
|
|
Approve(context.Context, *ApproveRequest) (*protobuf.IdentityStatusReply, error)
|
|
}
|
|
|
|
// UnimplementedAgencyServer should be embedded to have
|
|
// forward compatible implementations.
|
|
//
|
|
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
|
// pointer dereference when methods are called.
|
|
type UnimplementedAgencyServer struct{}
|
|
|
|
func (UnimplementedAgencyServer) Login(context.Context, *LoginRequest) (*protobuf.MarketLoginReply, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Login not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) Create(context.Context, *MarketAgenctyItem) (*protobuf.IdentityStatusReply, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Create not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) Get(context.Context, *protobuf.IdentRequest) (*MarketAgenctyItem, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Get not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) Fetch(context.Context, *protobuf.MarketFetchRequest) (*AgencyReply, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Fetch not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) Modify(context.Context, *MarketAgenctyItem) (*protobuf.IdentityStatusReply, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Modify not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) Delete(context.Context, *protobuf.IdentRequest) (*protobuf.IdentityStatusReply, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Delete not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) SetPassword(context.Context, *SetPasswordRequest) (*protobuf.IdentityStatusReply, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method SetPassword not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) Pending(context.Context, *protobuf.MarketFetchRequest) (*AgencyReply, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Pending not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) Approve(context.Context, *ApproveRequest) (*protobuf.IdentityStatusReply, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Approve not implemented")
|
|
}
|
|
func (UnimplementedAgencyServer) testEmbeddedByValue() {}
|
|
|
|
// UnsafeAgencyServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to AgencyServer will
|
|
// result in compilation errors.
|
|
type UnsafeAgencyServer interface {
|
|
mustEmbedUnimplementedAgencyServer()
|
|
}
|
|
|
|
func RegisterAgencyServer(s grpc.ServiceRegistrar, srv AgencyServer) {
|
|
// If the following call panics, it indicates UnimplementedAgencyServer was
|
|
// embedded by pointer and is nil. This will cause panics if an
|
|
// unimplemented method is ever invoked, so we test this at initialization
|
|
// time to prevent it from happening at runtime later due to I/O.
|
|
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
|
t.testEmbeddedByValue()
|
|
}
|
|
s.RegisterService(&Agency_ServiceDesc, srv)
|
|
}
|
|
|
|
func _Agency_Login_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LoginRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).Login(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_Login_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).Login(ctx, req.(*LoginRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Agency_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(MarketAgenctyItem)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).Create(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_Create_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).Create(ctx, req.(*MarketAgenctyItem))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Agency_Get_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(protobuf.IdentRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).Get(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_Get_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).Get(ctx, req.(*protobuf.IdentRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Agency_Fetch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(protobuf.MarketFetchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).Fetch(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_Fetch_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).Fetch(ctx, req.(*protobuf.MarketFetchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Agency_Modify_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(MarketAgenctyItem)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).Modify(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_Modify_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).Modify(ctx, req.(*MarketAgenctyItem))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Agency_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(protobuf.IdentRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).Delete(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_Delete_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).Delete(ctx, req.(*protobuf.IdentRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Agency_SetPassword_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(SetPasswordRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).SetPassword(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_SetPassword_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).SetPassword(ctx, req.(*SetPasswordRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Agency_Pending_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(protobuf.MarketFetchRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).Pending(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_Pending_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).Pending(ctx, req.(*protobuf.MarketFetchRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Agency_Approve_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ApproveRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(AgencyServer).Approve(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Agency_Approve_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(AgencyServer).Approve(ctx, req.(*ApproveRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// Agency_ServiceDesc is the grpc.ServiceDesc for Agency service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var Agency_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "market.Agency",
|
|
HandlerType: (*AgencyServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Login",
|
|
Handler: _Agency_Login_Handler,
|
|
},
|
|
{
|
|
MethodName: "Create",
|
|
Handler: _Agency_Create_Handler,
|
|
},
|
|
{
|
|
MethodName: "Get",
|
|
Handler: _Agency_Get_Handler,
|
|
},
|
|
{
|
|
MethodName: "Fetch",
|
|
Handler: _Agency_Fetch_Handler,
|
|
},
|
|
{
|
|
MethodName: "Modify",
|
|
Handler: _Agency_Modify_Handler,
|
|
},
|
|
{
|
|
MethodName: "Delete",
|
|
Handler: _Agency_Delete_Handler,
|
|
},
|
|
{
|
|
MethodName: "SetPassword",
|
|
Handler: _Agency_SetPassword_Handler,
|
|
},
|
|
{
|
|
MethodName: "Pending",
|
|
Handler: _Agency_Pending_Handler,
|
|
},
|
|
{
|
|
MethodName: "Approve",
|
|
Handler: _Agency_Approve_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "module/ec/market/proto/agency.proto",
|
|
}
|