1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| syntax = "proto3";
|
| package proto;
|
| message Device {
| string id = 1;
| string devId = 2;
| string devType = 3;
| string devMode = 4;
| string devName = 5;
| string machineCode = 6;
| string activateCode = 7;
| string productId = 8;
| string userId = 9;
| string address = 10;
| string devIp = 11;
| string devCpu = 12;
| string devGpu = 13;
| int32 mem = 14;
| string disk = 15;
| int32 channelCount = 16;
| string masterVersion = 17;
| string webVersion = 18;
| string serverPort = 19;
| string subMask = 20;
| string gateway = 21;
| string dns = 22;
| string runtime = 23;
| string installTime = 24;
| string firstUseTime = 25;
| string clusterId = 26;
| string clusterName = 27;
| int32 status = 28;
| string createTime = 29;
| string updateTime = 30;
| }
|
|