用户可以使用管理员设置的公用线路

This commit is contained in:
刘祥超
2022-11-24 17:20:26 +08:00
parent e7bf608552
commit 8b2088d498
9 changed files with 9310 additions and 7610 deletions

View File

@@ -5,6 +5,7 @@ package pb;
import "models/model_ns_cluster.proto";
import "models/model_ns_domain.proto";
import "models/model_ns_route_category.proto";
// 线路
message NSRoute {
@@ -13,10 +14,12 @@ message NSRoute {
string name = 3;
bytes rangesJSON = 4;
bool isDeleted = 5;
int64 order = 6;
int32 order = 6;
int64 version = 7;
string code = 8;
bool isPublic = 9;
NSCluster nsCluster = 30;
NSDomain nsDomain = 31;
NSRouteCategory nsRouteCategory = 32;
}