zhangqian
2024-03-29 c2be95e83d1597eed8623fdd70a77d617465f91e
proto/inventory_order/inventory_order_grpc.pb.go
@@ -1,4 +1,8 @@
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc             v3.19.0
// source: inventory_order.proto
package inventory_order
@@ -14,6 +18,13 @@
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc.SupportPackageIsVersion7
const (
   InventoryOrderService_CreateNewOrder_FullMethodName            = "/inventoryOrderService/CreateNewOrder"
   InventoryOrderService_CreateOperationList_FullMethodName       = "/inventoryOrderService/CreateOperationList"
   InventoryOrderService_UpdateMaterialApplyStatus_FullMethodName = "/inventoryOrderService/UpdateMaterialApplyStatus"
   InventoryOrderService_GetWarehouseInfo_FullMethodName          = "/inventoryOrderService/GetWarehouseInfo"
)
// InventoryOrderServiceClient is the client API for InventoryOrderService 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.
@@ -21,6 +32,7 @@
   CreateNewOrder(ctx context.Context, in *CreateNewOrderRequest, opts ...grpc.CallOption) (*CreateNewOrderResponse, error)
   CreateOperationList(ctx context.Context, in *CreateOperationListRequest, opts ...grpc.CallOption) (*CreateOperationListResponse, error)
   UpdateMaterialApplyStatus(ctx context.Context, in *UpdateMaterialApplyStatusRequest, opts ...grpc.CallOption) (*UpdateMaterialApplyStatusResponse, error)
   GetWarehouseInfo(ctx context.Context, in *GetWarehouseInfoRequest, opts ...grpc.CallOption) (*GetWarehouseInfoResponse, error)
}
type inventoryOrderServiceClient struct {
@@ -33,7 +45,7 @@
func (c *inventoryOrderServiceClient) CreateNewOrder(ctx context.Context, in *CreateNewOrderRequest, opts ...grpc.CallOption) (*CreateNewOrderResponse, error) {
   out := new(CreateNewOrderResponse)
   err := c.cc.Invoke(ctx, "/inventoryOrderService/CreateNewOrder", in, out, opts...)
   err := c.cc.Invoke(ctx, InventoryOrderService_CreateNewOrder_FullMethodName, in, out, opts...)
   if err != nil {
      return nil, err
   }
@@ -42,7 +54,7 @@
func (c *inventoryOrderServiceClient) CreateOperationList(ctx context.Context, in *CreateOperationListRequest, opts ...grpc.CallOption) (*CreateOperationListResponse, error) {
   out := new(CreateOperationListResponse)
   err := c.cc.Invoke(ctx, "/inventoryOrderService/CreateOperationList", in, out, opts...)
   err := c.cc.Invoke(ctx, InventoryOrderService_CreateOperationList_FullMethodName, in, out, opts...)
   if err != nil {
      return nil, err
   }
@@ -51,7 +63,16 @@
func (c *inventoryOrderServiceClient) UpdateMaterialApplyStatus(ctx context.Context, in *UpdateMaterialApplyStatusRequest, opts ...grpc.CallOption) (*UpdateMaterialApplyStatusResponse, error) {
   out := new(UpdateMaterialApplyStatusResponse)
   err := c.cc.Invoke(ctx, "/inventoryOrderService/UpdateMaterialApplyStatus", in, out, opts...)
   err := c.cc.Invoke(ctx, InventoryOrderService_UpdateMaterialApplyStatus_FullMethodName, in, out, opts...)
   if err != nil {
      return nil, err
   }
   return out, nil
}
func (c *inventoryOrderServiceClient) GetWarehouseInfo(ctx context.Context, in *GetWarehouseInfoRequest, opts ...grpc.CallOption) (*GetWarehouseInfoResponse, error) {
   out := new(GetWarehouseInfoResponse)
   err := c.cc.Invoke(ctx, InventoryOrderService_GetWarehouseInfo_FullMethodName, in, out, opts...)
   if err != nil {
      return nil, err
   }
@@ -65,6 +86,7 @@
   CreateNewOrder(context.Context, *CreateNewOrderRequest) (*CreateNewOrderResponse, error)
   CreateOperationList(context.Context, *CreateOperationListRequest) (*CreateOperationListResponse, error)
   UpdateMaterialApplyStatus(context.Context, *UpdateMaterialApplyStatusRequest) (*UpdateMaterialApplyStatusResponse, error)
   GetWarehouseInfo(context.Context, *GetWarehouseInfoRequest) (*GetWarehouseInfoResponse, error)
   mustEmbedUnimplementedInventoryOrderServiceServer()
}
@@ -80,6 +102,9 @@
}
func (UnimplementedInventoryOrderServiceServer) UpdateMaterialApplyStatus(context.Context, *UpdateMaterialApplyStatusRequest) (*UpdateMaterialApplyStatusResponse, error) {
   return nil, status.Errorf(codes.Unimplemented, "method UpdateMaterialApplyStatus not implemented")
}
func (UnimplementedInventoryOrderServiceServer) GetWarehouseInfo(context.Context, *GetWarehouseInfoRequest) (*GetWarehouseInfoResponse, error) {
   return nil, status.Errorf(codes.Unimplemented, "method GetWarehouseInfo not implemented")
}
func (UnimplementedInventoryOrderServiceServer) mustEmbedUnimplementedInventoryOrderServiceServer() {}
@@ -104,7 +129,7 @@
   }
   info := &grpc.UnaryServerInfo{
      Server:     srv,
      FullMethod: "/inventoryOrderService/CreateNewOrder",
      FullMethod: InventoryOrderService_CreateNewOrder_FullMethodName,
   }
   handler := func(ctx context.Context, req interface{}) (interface{}, error) {
      return srv.(InventoryOrderServiceServer).CreateNewOrder(ctx, req.(*CreateNewOrderRequest))
@@ -122,7 +147,7 @@
   }
   info := &grpc.UnaryServerInfo{
      Server:     srv,
      FullMethod: "/inventoryOrderService/CreateOperationList",
      FullMethod: InventoryOrderService_CreateOperationList_FullMethodName,
   }
   handler := func(ctx context.Context, req interface{}) (interface{}, error) {
      return srv.(InventoryOrderServiceServer).CreateOperationList(ctx, req.(*CreateOperationListRequest))
@@ -140,10 +165,28 @@
   }
   info := &grpc.UnaryServerInfo{
      Server:     srv,
      FullMethod: "/inventoryOrderService/UpdateMaterialApplyStatus",
      FullMethod: InventoryOrderService_UpdateMaterialApplyStatus_FullMethodName,
   }
   handler := func(ctx context.Context, req interface{}) (interface{}, error) {
      return srv.(InventoryOrderServiceServer).UpdateMaterialApplyStatus(ctx, req.(*UpdateMaterialApplyStatusRequest))
   }
   return interceptor(ctx, in, info, handler)
}
func _InventoryOrderService_GetWarehouseInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
   in := new(GetWarehouseInfoRequest)
   if err := dec(in); err != nil {
      return nil, err
   }
   if interceptor == nil {
      return srv.(InventoryOrderServiceServer).GetWarehouseInfo(ctx, in)
   }
   info := &grpc.UnaryServerInfo{
      Server:     srv,
      FullMethod: InventoryOrderService_GetWarehouseInfo_FullMethodName,
   }
   handler := func(ctx context.Context, req interface{}) (interface{}, error) {
      return srv.(InventoryOrderServiceServer).GetWarehouseInfo(ctx, req.(*GetWarehouseInfoRequest))
   }
   return interceptor(ctx, in, info, handler)
}
@@ -167,6 +210,10 @@
         MethodName: "UpdateMaterialApplyStatus",
         Handler:    _InventoryOrderService_UpdateMaterialApplyStatus_Handler,
      },
      {
         MethodName: "GetWarehouseInfo",
         Handler:    _InventoryOrderService_GetWarehouseInfo_Handler,
      },
   },
   Streams:  []grpc.StreamDesc{},
   Metadata: "inventory_order.proto",