fix
wangpengfei
2023-08-28 c5a0eb549cba2cd358a2d0496c44f3a289f15d9c
proto/product.proto
@@ -12,8 +12,8 @@
}
message GetProductInfoResponse{
  int32   Code  = 1;
  string  Msg   = 2;
  int32   Code = 1;
  string  Msg = 2;
  Product Data = 3;
}
message Product {
@@ -24,8 +24,12 @@
  double SalePrice = 5; //销售价格
  float Amount = 6;//库存剩余量
  int32 MinInventory = 7;//安全库存
  string MaterialMode = 8; //物料类型
  string PurchaseType = 9;//采购类型
  int32 MaxInventory = 8; // 最大库存
  string MaterialMode = 9; //物料类型
  string PurchaseType = 10;//采购类型
  string Node = 11; // 备注
  string Type = 12; // 型号
  string Specs = 13; // 规格
}
message GetProductListRequest{
@@ -36,8 +40,8 @@
}
message GetProductListResponse{
  int32   Code  = 1;
  string  Msg   = 2;
  int32   Code = 1;
  string  Msg = 2;
  repeated Product List = 3;
  int64 Total = 4;
}