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