mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-05 14:20:24 +08:00
15 lines
244 B
Protocol Buffer
15 lines
244 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
// 用户AccessKey
|
||
|
|
message UserAccessKey {
|
||
|
|
int64 id = 1;
|
||
|
|
int64 userId = 2;
|
||
|
|
int64 subUserId = 3;
|
||
|
|
bool isOn = 4;
|
||
|
|
string uniqueId = 5;
|
||
|
|
string secret = 6;
|
||
|
|
string description = 7;
|
||
|
|
}
|