mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
22 lines
372 B
Protocol Buffer
22 lines
372 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_ns_cluster.proto";
|
|
import "models/model_ns_domain.proto";
|
|
|
|
// 线路
|
|
message NSRoute {
|
|
int64 id = 1;
|
|
bool isOn = 2;
|
|
string name = 3;
|
|
bytes rangesJSON = 4;
|
|
bool isDeleted = 5;
|
|
int64 order = 6;
|
|
int64 version = 7;
|
|
string code = 8;
|
|
|
|
NSCluster nsCluster = 30;
|
|
NSDomain nsDomain = 31;
|
|
} |