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

20 lines
360 B
Protocol Buffer
Raw Normal View History

2021-04-13 20:02:05 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
// 版本认证
message AuthorityKey {
string value = 1;
string dayFrom = 2;
string dayTo = 3;
string hostname = 4;
repeated string macAddresses = 5;
int64 updatedAt = 6;
2021-04-14 20:01:51 +08:00
string company = 7;
int32 nodes = 8;
2021-11-29 20:36:02 +08:00
repeated string components = 9;
2023-02-22 19:46:50 +08:00
string edition = 10;
string requestCode = 11;
2021-04-13 20:02:05 +08:00
}