实现数据库节点管理

This commit is contained in:
刘祥超
2020-10-08 17:55:05 +08:00
parent eac1e5ee68
commit fdf0f64e1d
4 changed files with 1552 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message DBNode {
int64 id = 1;
string name = 2;
string description = 3;
bool isOn = 4;
string host = 5;
int32 port = 6;
string database = 7;
string username = 8;
string password = 9;
string charset = 10;
}