.proto文件例子

// Filename: tables.proto
//optional required

syntax="proto2";
package tables;

message Goods {
optional string goodsid = 1;
optional string goodsname = 2;
}

message Units {
optional string unitid = 1;
optional string unitname = 2;
}

message Tables {
repeated Goods GoodsArr = 1;
repeated Units UnitsArr = 2;
}

message UpFile {
optional string filename = 1;
optional bytes filecontent = 2;
}

  

相关文章:

  • 2022-12-23
  • 2021-09-14
  • 2021-10-01
  • 2021-07-25
  • 2022-01-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-10
  • 2021-09-15
  • 2021-12-28
  • 2021-11-10
  • 2022-12-23
相关资源
相似解决方案