mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-25 19:51:19 +08:00
对服务增加基础的数据统计/部分代码分Package
This commit is contained in:
23
pkg/rpc/protos/models/model_dns_domain.proto
Normal file
23
pkg/rpc/protos/models/model_dns_domain.proto
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user