Files
EdgeCommon/pkg/rpc/protos/model_user.proto
2020-12-04 16:01:06 +08:00

16 lines
250 B
Protocol Buffer

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;
}