structs.proto 570 B

1234567891011121314151617181920212223
  1. syntax="proto3";
  2. package protos;
  3. option go_package = ".;protos";
  4. message Int32Scope {
  5. int32 min = 1;
  6. int32 max = 2;
  7. }
  8. // 矿池
  9. message Mine {
  10. int64 id = 1;
  11. string name = 2; // 名称
  12. string coin = 3; // 币
  13. string city = 4;
  14. string location = 5; // 详细位置
  15. string desc = 8; // 简介
  16. string holder = 9; // 所有人
  17. float longitude = 10; // 经纬度
  18. float latitude = 11;
  19. uint64 gameId = 12;
  20. }