[账单]显示账单、手动生成账单

This commit is contained in:
GoEdgeLab
2020-12-11 21:39:17 +08:00
parent d446abf000
commit 520f537ed7
9 changed files with 1349 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 服务每日统计
message ServerDailyStat {
int64 serverId = 1;
int64 regionId = 2;
int64 bytes = 3;
int64 createdAt = 4;
}