mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-14 21:06:34 +08:00
19 lines
317 B
Protocol Buffer
19 lines
317 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "model_node_cluster.proto";
|
|
|
|
message User {
|
|
int64 id = 1;
|
|
string username = 2;
|
|
string fullname = 3;
|
|
string mobile = 4;
|
|
string tel = 5;
|
|
string email = 6;
|
|
string remark = 7;
|
|
bool isOn = 8;
|
|
int64 createdAt = 9;
|
|
NodeCluster nodeCluster = 10;
|
|
} |