对服务增加基础的数据统计/部分代码分Package

This commit is contained in:
GoEdgeLab
2021-01-25 16:41:30 +08:00
parent 1e85ba4679
commit 1e6297a169
245 changed files with 13026 additions and 8836 deletions

View File

@@ -0,0 +1,23 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_dns_route.proto";
message DNSDomain {
int64 id = 1;
string name = 2;
bool isOn = 3;
int64 dataUpdatedAt = 4;
string dataError = 5;
int64 countServerRecords = 6;
int64 countAllServers = 13;
bool serversChanged = 7;
int64 countNodeRecords = 8;
int64 countAllNodes = 14;
bool nodesChanged = 9;
repeated DNSRoute routes = 10;
int64 providerId = 11;
int64 countNodeClusters = 12;
}