21 lines
458 B
Protocol Buffer
21 lines
458 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package tieba;
|
|
|
|
option java_package = "com.huanchengfly.tieba.post.api.models.protos";
|
|
|
|
message SimpleUser {
|
|
int64 user_id = 1;
|
|
int32 user_status = 2;
|
|
string secureemail = 3;
|
|
string securemobil = 4;
|
|
string user_name = 5;
|
|
string user_nickname = 6;
|
|
uint32 incomplete_user = 7;
|
|
string portrait = 8;
|
|
int32 agree_type = 9;
|
|
string ahead_url = 10;
|
|
string block_msg = 11;
|
|
int32 show_onlyme = 12;
|
|
}
|