mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-11 01:50:26 +08:00
29 lines
694 B
Protocol Buffer
29 lines
694 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
import "models/model_region_provider.proto";
|
||
|
|
|
||
|
|
// 运营商月份统计
|
||
|
|
service ServerRegionProviderMonthlyStatService {
|
||
|
|
// 查找前N个运营商
|
||
|
|
rpc findTopServerRegionProviderMonthlyStats (FindTopServerRegionProviderMonthlyStatsRequest) returns (FindTopServerRegionProviderMonthlyStatsResponse);
|
||
|
|
}
|
||
|
|
|
||
|
|
// 查找前N个城市
|
||
|
|
message FindTopServerRegionProviderMonthlyStatsRequest {
|
||
|
|
string month = 1; // YYYYMM
|
||
|
|
int64 serverId = 2;
|
||
|
|
int64 offset = 3;
|
||
|
|
int64 size = 4;
|
||
|
|
}
|
||
|
|
|
||
|
|
message FindTopServerRegionProviderMonthlyStatsResponse {
|
||
|
|
repeated Stat stats = 1;
|
||
|
|
|
||
|
|
message Stat {
|
||
|
|
RegionProvider regionProvider = 1;
|
||
|
|
int64 count = 2;
|
||
|
|
}
|
||
|
|
}
|