Files
EdgeCommon/pkg/rpc/protos/model_user.proto

16 lines
250 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
option go_package = "./pb";
package pb;
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;
}