go_dreamfactory/pb/proto/user_db.proto
zhaocy 593a036393 Merge branch 'dev' into f66
# Conflicts:
#	comm/core.go
#	modules/user/login_comp.go
2022-06-07 17:20:42 +08:00

15 lines
339 B
Protocol Buffer

syntax = "proto3";
option go_package = ".;pb";
message Cache_UserData {
string SessionId = 2;
string GatewayServiceId = 3;
DB_UserData UserData = 4;
}
message DB_UserData {
string UserId = 1; //tags:{bson:"_id"}动态Id
string Account = 2;
string NiceName = 3;
int32 ServerId = 4;
}