liujiandao
2023-11-15 d6091514f2ab3f8e650a14853804cf27438b3f26
proto/purchase_wms/purchase_wms.pb.go
@@ -295,6 +295,305 @@
   return ""
}
type GetSupplierListByProductIdRequest struct {
   state         protoimpl.MessageState
   sizeCache     protoimpl.SizeCache
   unknownFields protoimpl.UnknownFields
   ProductId string `protobuf:"bytes,1,opt,name=ProductId,proto3" json:"ProductId,omitempty"`
}
func (x *GetSupplierListByProductIdRequest) Reset() {
   *x = GetSupplierListByProductIdRequest{}
   if protoimpl.UnsafeEnabled {
      mi := &file_purchase_wms_proto_msgTypes[5]
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      ms.StoreMessageInfo(mi)
   }
}
func (x *GetSupplierListByProductIdRequest) String() string {
   return protoimpl.X.MessageStringOf(x)
}
func (*GetSupplierListByProductIdRequest) ProtoMessage() {}
func (x *GetSupplierListByProductIdRequest) ProtoReflect() protoreflect.Message {
   mi := &file_purchase_wms_proto_msgTypes[5]
   if protoimpl.UnsafeEnabled && x != nil {
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      if ms.LoadMessageInfo() == nil {
         ms.StoreMessageInfo(mi)
      }
      return ms
   }
   return mi.MessageOf(x)
}
// Deprecated: Use GetSupplierListByProductIdRequest.ProtoReflect.Descriptor instead.
func (*GetSupplierListByProductIdRequest) Descriptor() ([]byte, []int) {
   return file_purchase_wms_proto_rawDescGZIP(), []int{5}
}
func (x *GetSupplierListByProductIdRequest) GetProductId() string {
   if x != nil {
      return x.ProductId
   }
   return ""
}
type SupplierList struct {
   state         protoimpl.MessageState
   sizeCache     protoimpl.SizeCache
   unknownFields protoimpl.UnknownFields
   SupplierId    int64   `protobuf:"varint,1,opt,name=supplierId,proto3" json:"supplierId,omitempty"`
   SupplierName  string  `protobuf:"bytes,2,opt,name=supplierName,proto3" json:"supplierName,omitempty"`
   PurchasePrice float32 `protobuf:"fixed32,3,opt,name=purchasePrice,proto3" json:"purchasePrice,omitempty"` //采购价格
}
func (x *SupplierList) Reset() {
   *x = SupplierList{}
   if protoimpl.UnsafeEnabled {
      mi := &file_purchase_wms_proto_msgTypes[6]
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      ms.StoreMessageInfo(mi)
   }
}
func (x *SupplierList) String() string {
   return protoimpl.X.MessageStringOf(x)
}
func (*SupplierList) ProtoMessage() {}
func (x *SupplierList) ProtoReflect() protoreflect.Message {
   mi := &file_purchase_wms_proto_msgTypes[6]
   if protoimpl.UnsafeEnabled && x != nil {
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      if ms.LoadMessageInfo() == nil {
         ms.StoreMessageInfo(mi)
      }
      return ms
   }
   return mi.MessageOf(x)
}
// Deprecated: Use SupplierList.ProtoReflect.Descriptor instead.
func (*SupplierList) Descriptor() ([]byte, []int) {
   return file_purchase_wms_proto_rawDescGZIP(), []int{6}
}
func (x *SupplierList) GetSupplierId() int64 {
   if x != nil {
      return x.SupplierId
   }
   return 0
}
func (x *SupplierList) GetSupplierName() string {
   if x != nil {
      return x.SupplierName
   }
   return ""
}
func (x *SupplierList) GetPurchasePrice() float32 {
   if x != nil {
      return x.PurchasePrice
   }
   return 0
}
type GetSupplierListByProductIdResponse struct {
   state         protoimpl.MessageState
   sizeCache     protoimpl.SizeCache
   unknownFields protoimpl.UnknownFields
   Code int32           `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
   Msg  string          `protobuf:"bytes,2,opt,name=Msg,proto3" json:"Msg,omitempty"`
   List []*SupplierList `protobuf:"bytes,3,rep,name=List,proto3" json:"List,omitempty"`
}
func (x *GetSupplierListByProductIdResponse) Reset() {
   *x = GetSupplierListByProductIdResponse{}
   if protoimpl.UnsafeEnabled {
      mi := &file_purchase_wms_proto_msgTypes[7]
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      ms.StoreMessageInfo(mi)
   }
}
func (x *GetSupplierListByProductIdResponse) String() string {
   return protoimpl.X.MessageStringOf(x)
}
func (*GetSupplierListByProductIdResponse) ProtoMessage() {}
func (x *GetSupplierListByProductIdResponse) ProtoReflect() protoreflect.Message {
   mi := &file_purchase_wms_proto_msgTypes[7]
   if protoimpl.UnsafeEnabled && x != nil {
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      if ms.LoadMessageInfo() == nil {
         ms.StoreMessageInfo(mi)
      }
      return ms
   }
   return mi.MessageOf(x)
}
// Deprecated: Use GetSupplierListByProductIdResponse.ProtoReflect.Descriptor instead.
func (*GetSupplierListByProductIdResponse) Descriptor() ([]byte, []int) {
   return file_purchase_wms_proto_rawDescGZIP(), []int{7}
}
func (x *GetSupplierListByProductIdResponse) GetCode() int32 {
   if x != nil {
      return x.Code
   }
   return 0
}
func (x *GetSupplierListByProductIdResponse) GetMsg() string {
   if x != nil {
      return x.Msg
   }
   return ""
}
func (x *GetSupplierListByProductIdResponse) GetList() []*SupplierList {
   if x != nil {
      return x.List
   }
   return nil
}
type CreatePurchaseByWmsRequest struct {
   state         protoimpl.MessageState
   sizeCache     protoimpl.SizeCache
   unknownFields protoimpl.UnknownFields
   SupplierId int64  `protobuf:"varint,1,opt,name=SupplierId,proto3" json:"SupplierId,omitempty"`
   ProductId  string `protobuf:"bytes,2,opt,name=ProductId,proto3" json:"ProductId,omitempty"`
   Amount     int64  `protobuf:"varint,3,opt,name=Amount,proto3" json:"Amount,omitempty"`
}
func (x *CreatePurchaseByWmsRequest) Reset() {
   *x = CreatePurchaseByWmsRequest{}
   if protoimpl.UnsafeEnabled {
      mi := &file_purchase_wms_proto_msgTypes[8]
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      ms.StoreMessageInfo(mi)
   }
}
func (x *CreatePurchaseByWmsRequest) String() string {
   return protoimpl.X.MessageStringOf(x)
}
func (*CreatePurchaseByWmsRequest) ProtoMessage() {}
func (x *CreatePurchaseByWmsRequest) ProtoReflect() protoreflect.Message {
   mi := &file_purchase_wms_proto_msgTypes[8]
   if protoimpl.UnsafeEnabled && x != nil {
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      if ms.LoadMessageInfo() == nil {
         ms.StoreMessageInfo(mi)
      }
      return ms
   }
   return mi.MessageOf(x)
}
// Deprecated: Use CreatePurchaseByWmsRequest.ProtoReflect.Descriptor instead.
func (*CreatePurchaseByWmsRequest) Descriptor() ([]byte, []int) {
   return file_purchase_wms_proto_rawDescGZIP(), []int{8}
}
func (x *CreatePurchaseByWmsRequest) GetSupplierId() int64 {
   if x != nil {
      return x.SupplierId
   }
   return 0
}
func (x *CreatePurchaseByWmsRequest) GetProductId() string {
   if x != nil {
      return x.ProductId
   }
   return ""
}
func (x *CreatePurchaseByWmsRequest) GetAmount() int64 {
   if x != nil {
      return x.Amount
   }
   return 0
}
type CreatePurchaseByWmsResponse struct {
   state         protoimpl.MessageState
   sizeCache     protoimpl.SizeCache
   unknownFields protoimpl.UnknownFields
   Code           int32  `protobuf:"varint,1,opt,name=Code,proto3" json:"Code,omitempty"`
   Msg            string `protobuf:"bytes,2,opt,name=Msg,proto3" json:"Msg,omitempty"`
   PurchaseNumber string `protobuf:"bytes,3,opt,name=PurchaseNumber,proto3" json:"PurchaseNumber,omitempty"`
}
func (x *CreatePurchaseByWmsResponse) Reset() {
   *x = CreatePurchaseByWmsResponse{}
   if protoimpl.UnsafeEnabled {
      mi := &file_purchase_wms_proto_msgTypes[9]
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      ms.StoreMessageInfo(mi)
   }
}
func (x *CreatePurchaseByWmsResponse) String() string {
   return protoimpl.X.MessageStringOf(x)
}
func (*CreatePurchaseByWmsResponse) ProtoMessage() {}
func (x *CreatePurchaseByWmsResponse) ProtoReflect() protoreflect.Message {
   mi := &file_purchase_wms_proto_msgTypes[9]
   if protoimpl.UnsafeEnabled && x != nil {
      ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
      if ms.LoadMessageInfo() == nil {
         ms.StoreMessageInfo(mi)
      }
      return ms
   }
   return mi.MessageOf(x)
}
// Deprecated: Use CreatePurchaseByWmsResponse.ProtoReflect.Descriptor instead.
func (*CreatePurchaseByWmsResponse) Descriptor() ([]byte, []int) {
   return file_purchase_wms_proto_rawDescGZIP(), []int{9}
}
func (x *CreatePurchaseByWmsResponse) GetCode() int32 {
   if x != nil {
      return x.Code
   }
   return 0
}
func (x *CreatePurchaseByWmsResponse) GetMsg() string {
   if x != nil {
      return x.Msg
   }
   return ""
}
func (x *CreatePurchaseByWmsResponse) GetPurchaseNumber() string {
   if x != nil {
      return x.PurchaseNumber
   }
   return ""
}
var File_purchase_wms_proto protoreflect.FileDescriptor
var file_purchase_wms_proto_rawDesc = []byte{
@@ -323,19 +622,64 @@
   0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a,
   0x04, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x43, 0x6f, 0x64,
   0x65, 0x12, 0x10, 0x0a, 0x03, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
   0x4d, 0x73, 0x67, 0x32, 0xa8, 0x01, 0x0a, 0x0f, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65,
   0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x3e, 0x0a, 0x0d, 0x50, 0x75, 0x72, 0x63, 0x68,
   0x61, 0x73, 0x65, 0x54, 0x6f, 0x57, 0x6d, 0x73, 0x12, 0x15, 0x2e, 0x50, 0x75, 0x72, 0x63, 0x68,
   0x61, 0x73, 0x65, 0x54, 0x6f, 0x57, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
   0x16, 0x2e, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x54, 0x6f, 0x57, 0x6d, 0x73, 0x52,
   0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74,
   0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
   0x1c, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65,
   0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e,
   0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x53, 0x74,
   0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10,
   0x5a, 0x0e, 0x2e, 0x2f, 0x70, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x5f, 0x77, 0x6d, 0x73,
   0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   0x4d, 0x73, 0x67, 0x22, 0x41, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69,
   0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49,
   0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x50, 0x72, 0x6f, 0x64,
   0x75, 0x63, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x50, 0x72, 0x6f,
   0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x22, 0x78, 0x0a, 0x0c, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69,
   0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x75, 0x70, 0x70, 0x6c, 0x69,
   0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x75, 0x70, 0x70,
   0x6c, 0x69, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x75, 0x70, 0x70, 0x6c, 0x69,
   0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x75,
   0x70, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x75,
   0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
   0x02, 0x52, 0x0d, 0x70, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x50, 0x72, 0x69, 0x63, 0x65,
   0x22, 0x6d, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x4c,
   0x69, 0x73, 0x74, 0x42, 0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65,
   0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01,
   0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x4d, 0x73,
   0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x4d, 0x73, 0x67, 0x12, 0x21, 0x0a, 0x04,
   0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x53, 0x75, 0x70,
   0x70, 0x6c, 0x69, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x22,
   0x72, 0x0a, 0x1a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73,
   0x65, 0x42, 0x79, 0x57, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a,
   0x0a, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
   0x03, 0x52, 0x0a, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a,
   0x09, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
   0x52, 0x09, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x41,
   0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x41, 0x6d, 0x6f,
   0x75, 0x6e, 0x74, 0x22, 0x6b, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x75, 0x72,
   0x63, 0x68, 0x61, 0x73, 0x65, 0x42, 0x79, 0x57, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
   0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
   0x52, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20,
   0x01, 0x28, 0x09, 0x52, 0x03, 0x4d, 0x73, 0x67, 0x12, 0x26, 0x0a, 0x0e, 0x50, 0x75, 0x72, 0x63,
   0x68, 0x61, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
   0x52, 0x0e, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
   0x32, 0xe5, 0x02, 0x0a, 0x0f, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x53, 0x65, 0x72,
   0x76, 0x69, 0x63, 0x65, 0x12, 0x3e, 0x0a, 0x0d, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65,
   0x54, 0x6f, 0x57, 0x6d, 0x73, 0x12, 0x15, 0x2e, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65,
   0x54, 0x6f, 0x57, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x50,
   0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x54, 0x6f, 0x57, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70,
   0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x75,
   0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x2e, 0x55,
   0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x53, 0x74, 0x61,
   0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x55, 0x70, 0x64,
   0x61, 0x74, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
   0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x1a, 0x47,
   0x65, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79,
   0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x12, 0x22, 0x2e, 0x47, 0x65, 0x74, 0x53,
   0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x50, 0x72, 0x6f,
   0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e,
   0x47, 0x65, 0x74, 0x53, 0x75, 0x70, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x42,
   0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
   0x73, 0x65, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x75,
   0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x42, 0x79, 0x57, 0x6d, 0x73, 0x12, 0x1b, 0x2e, 0x43, 0x72,
   0x65, 0x61, 0x74, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x42, 0x79, 0x57, 0x6d,
   0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
   0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x42, 0x79, 0x57, 0x6d, 0x73, 0x52, 0x65,
   0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x70, 0x75,
   0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x5f, 0x77, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
   0x6f, 0x33,
}
var (
@@ -350,25 +694,35 @@
   return file_purchase_wms_proto_rawDescData
}
var file_purchase_wms_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
var file_purchase_wms_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
var file_purchase_wms_proto_goTypes = []interface{}{
   (*PurchaseProduct)(nil),              // 0: PurchaseProduct
   (*PurchaseToWmsRequest)(nil),         // 1: PurchaseToWmsRequest
   (*PurchaseToWmsResponse)(nil),        // 2: PurchaseToWmsResponse
   (*UpdatePurchaseStatusRequest)(nil),  // 3: UpdatePurchaseStatusRequest
   (*UpdatePurchaseStatusResponse)(nil), // 4: UpdatePurchaseStatusResponse
   (*PurchaseProduct)(nil),                    // 0: PurchaseProduct
   (*PurchaseToWmsRequest)(nil),               // 1: PurchaseToWmsRequest
   (*PurchaseToWmsResponse)(nil),              // 2: PurchaseToWmsResponse
   (*UpdatePurchaseStatusRequest)(nil),        // 3: UpdatePurchaseStatusRequest
   (*UpdatePurchaseStatusResponse)(nil),       // 4: UpdatePurchaseStatusResponse
   (*GetSupplierListByProductIdRequest)(nil),  // 5: GetSupplierListByProductIdRequest
   (*SupplierList)(nil),                       // 6: SupplierList
   (*GetSupplierListByProductIdResponse)(nil), // 7: GetSupplierListByProductIdResponse
   (*CreatePurchaseByWmsRequest)(nil),         // 8: CreatePurchaseByWmsRequest
   (*CreatePurchaseByWmsResponse)(nil),        // 9: CreatePurchaseByWmsResponse
}
var file_purchase_wms_proto_depIdxs = []int32{
   0, // 0: PurchaseToWmsRequest.Product:type_name -> PurchaseProduct
   1, // 1: PurchaseService.PurchaseToWms:input_type -> PurchaseToWmsRequest
   3, // 2: PurchaseService.UpdatePurchaseStatus:input_type -> UpdatePurchaseStatusRequest
   2, // 3: PurchaseService.PurchaseToWms:output_type -> PurchaseToWmsResponse
   4, // 4: PurchaseService.UpdatePurchaseStatus:output_type -> UpdatePurchaseStatusResponse
   3, // [3:5] is the sub-list for method output_type
   1, // [1:3] is the sub-list for method input_type
   1, // [1:1] is the sub-list for extension type_name
   1, // [1:1] is the sub-list for extension extendee
   0, // [0:1] is the sub-list for field type_name
   6, // 1: GetSupplierListByProductIdResponse.List:type_name -> SupplierList
   1, // 2: PurchaseService.PurchaseToWms:input_type -> PurchaseToWmsRequest
   3, // 3: PurchaseService.UpdatePurchaseStatus:input_type -> UpdatePurchaseStatusRequest
   5, // 4: PurchaseService.GetSupplierListByProductId:input_type -> GetSupplierListByProductIdRequest
   8, // 5: PurchaseService.CreatePurchaseByWms:input_type -> CreatePurchaseByWmsRequest
   2, // 6: PurchaseService.PurchaseToWms:output_type -> PurchaseToWmsResponse
   4, // 7: PurchaseService.UpdatePurchaseStatus:output_type -> UpdatePurchaseStatusResponse
   7, // 8: PurchaseService.GetSupplierListByProductId:output_type -> GetSupplierListByProductIdResponse
   9, // 9: PurchaseService.CreatePurchaseByWms:output_type -> CreatePurchaseByWmsResponse
   6, // [6:10] is the sub-list for method output_type
   2, // [2:6] is the sub-list for method input_type
   2, // [2:2] is the sub-list for extension type_name
   2, // [2:2] is the sub-list for extension extendee
   0, // [0:2] is the sub-list for field type_name
}
func init() { file_purchase_wms_proto_init() }
@@ -437,6 +791,66 @@
            return nil
         }
      }
      file_purchase_wms_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
         switch v := v.(*GetSupplierListByProductIdRequest); i {
         case 0:
            return &v.state
         case 1:
            return &v.sizeCache
         case 2:
            return &v.unknownFields
         default:
            return nil
         }
      }
      file_purchase_wms_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
         switch v := v.(*SupplierList); i {
         case 0:
            return &v.state
         case 1:
            return &v.sizeCache
         case 2:
            return &v.unknownFields
         default:
            return nil
         }
      }
      file_purchase_wms_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
         switch v := v.(*GetSupplierListByProductIdResponse); i {
         case 0:
            return &v.state
         case 1:
            return &v.sizeCache
         case 2:
            return &v.unknownFields
         default:
            return nil
         }
      }
      file_purchase_wms_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
         switch v := v.(*CreatePurchaseByWmsRequest); i {
         case 0:
            return &v.state
         case 1:
            return &v.sizeCache
         case 2:
            return &v.unknownFields
         default:
            return nil
         }
      }
      file_purchase_wms_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
         switch v := v.(*CreatePurchaseByWmsResponse); i {
         case 0:
            return &v.state
         case 1:
            return &v.sizeCache
         case 2:
            return &v.unknownFields
         default:
            return nil
         }
      }
   }
   type x struct{}
   out := protoimpl.TypeBuilder{
@@ -444,7 +858,7 @@
         GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
         RawDescriptor: file_purchase_wms_proto_rawDesc,
         NumEnums:      0,
         NumMessages:   5,
         NumMessages:   10,
         NumExtensions: 0,
         NumServices:   1,
      },