代码拉取完成,页面将自动刷新
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.2.0
// - protoc v3.19.1
// source: biz_goods/v1/biz_goods.proto
package v1
import (
context "context"
base "gitee.com/xiaoluo_1024/tcc-protoc/api/base"
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.32.0 or later.
const _ = grpc.SupportPackageIsVersion7
// BizGoodsServiceClient is the client API for BizGoodsService 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 BizGoodsServiceClient interface {
// 更新库存
UpdateInventory(ctx context.Context, in *UpdateInventoryRequest, opts ...grpc.CallOption) (*base.OperateReply, error)
}
type bizGoodsServiceClient struct {
cc grpc.ClientConnInterface
}
func NewBizGoodsServiceClient(cc grpc.ClientConnInterface) BizGoodsServiceClient {
return &bizGoodsServiceClient{cc}
}
func (c *bizGoodsServiceClient) UpdateInventory(ctx context.Context, in *UpdateInventoryRequest, opts ...grpc.CallOption) (*base.OperateReply, error) {
out := new(base.OperateReply)
err := c.cc.Invoke(ctx, "/biz_goods.v1.BizGoodsService/UpdateInventory", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// BizGoodsServiceServer is the server API for BizGoodsService service.
// All implementations must embed UnimplementedBizGoodsServiceServer
// for forward compatibility
type BizGoodsServiceServer interface {
// 更新库存
UpdateInventory(context.Context, *UpdateInventoryRequest) (*base.OperateReply, error)
mustEmbedUnimplementedBizGoodsServiceServer()
}
// UnimplementedBizGoodsServiceServer must be embedded to have forward compatible implementations.
type UnimplementedBizGoodsServiceServer struct {
}
func (UnimplementedBizGoodsServiceServer) UpdateInventory(context.Context, *UpdateInventoryRequest) (*base.OperateReply, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateInventory not implemented")
}
func (UnimplementedBizGoodsServiceServer) mustEmbedUnimplementedBizGoodsServiceServer() {}
// UnsafeBizGoodsServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to BizGoodsServiceServer will
// result in compilation errors.
type UnsafeBizGoodsServiceServer interface {
mustEmbedUnimplementedBizGoodsServiceServer()
}
func RegisterBizGoodsServiceServer(s grpc.ServiceRegistrar, srv BizGoodsServiceServer) {
s.RegisterService(&BizGoodsService_ServiceDesc, srv)
}
func _BizGoodsService_UpdateInventory_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateInventoryRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BizGoodsServiceServer).UpdateInventory(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/biz_goods.v1.BizGoodsService/UpdateInventory",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BizGoodsServiceServer).UpdateInventory(ctx, req.(*UpdateInventoryRequest))
}
return interceptor(ctx, in, info, handler)
}
// BizGoodsService_ServiceDesc is the grpc.ServiceDesc for BizGoodsService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var BizGoodsService_ServiceDesc = grpc.ServiceDesc{
ServiceName: "biz_goods.v1.BizGoodsService",
HandlerType: (*BizGoodsServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "UpdateInventory",
Handler: _BizGoodsService_UpdateInventory_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "biz_goods/v1/biz_goods.proto",
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。