Files
EdgeCommon/pkg/rpc/protos/models/model_node_ip_address.proto

19 lines
313 B
Protocol Buffer
Raw Normal View History

2020-09-13 19:27:47 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
// 节点地址
2020-09-13 19:27:47 +08:00
message NodeIPAddress {
int64 id = 1;
int64 nodeId = 2;
string name = 3;
string ip = 4;
string description = 5;
int64 state = 6;
int64 order = 7;
bool canAccess = 8;
bool isOn = 9;
bool isUp = 10;
bytes thresholdsJSON = 11;
2020-09-13 19:27:47 +08:00
}