[区域]增加区域管理

This commit is contained in:
GoEdgeLab
2020-12-10 15:03:08 +08:00
parent 0dc5b5a891
commit c74d7e3bc1
6 changed files with 2009 additions and 503 deletions

View File

@@ -0,0 +1,10 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message NodeRegion {
int64 id = 1;
bool isOn = 2;
string name = 3;
}