mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-21 02:00:25 +08:00
实现基本的域名、记录管理
This commit is contained in:
18
pkg/rpc/protos/models/model_ns_domain.proto
Normal file
18
pkg/rpc/protos/models/model_ns_domain.proto
Normal file
@@ -0,0 +1,18 @@
|
||||
syntax = "proto3";
|
||||
option go_package = "./pb";
|
||||
|
||||
package pb;
|
||||
|
||||
import "models/model_ns_cluster.proto";
|
||||
import "models/model_user.proto";
|
||||
|
||||
// DNS域名
|
||||
message NSDomain {
|
||||
int64 id = 1;
|
||||
string name = 2;
|
||||
bool isOn = 3;
|
||||
int64 createdAt = 4;
|
||||
|
||||
NSCluster nsCluster = 30;
|
||||
User user = 31;
|
||||
}
|
||||
Reference in New Issue
Block a user