增加企业版认证相关API

This commit is contained in:
刘祥超
2021-04-13 20:02:05 +08:00
parent 954e5561a9
commit fe0ca9ad93
4 changed files with 805 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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;
}