Files
EdgeCommon/pkg/rpc/protos/models/model_server_bandwidth_stat.proto

15 lines
241 B
Protocol Buffer
Raw Normal View History

2022-07-05 20:09:19 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
// 带宽统计数据
message ServerBandwidthStat {
int64 id = 1;
int64 userId = 2;
int64 serverId = 3;
string day = 4;
string timeAt = 5;
int64 bytes = 6;
int64 bits = 7;
2022-07-05 20:09:19 +08:00
}