TiebaLite/app/src/main/protos/User.proto

38 lines
835 B
Protocol Buffer
Raw Normal View History

2023-02-01 15:13:03 +08:00
syntax = "proto3";
import "PrivSets.proto";
package tieba;
option java_package = "com.huanchengfly.tieba.post.api.models.protos";
message User {
int32 is_login = 1;
int64 id = 2;
string name = 3;
string nameShow = 4;
string portrait = 5;
int32 no_un = 6;
int32 type = 7;
int32 userhide = 9;
int32 is_manager = 11;
int32 is_bawu = 25;
string bawu_type = 26;
2023-02-15 21:38:25 +08:00
string portraith = 27;
2023-02-01 16:02:26 +08:00
int32 fans_num = 30;
int32 concern_num = 31;
int32 sex = 32;
int32 my_like_num = 33;
string intro = 34;
2023-02-01 15:13:03 +08:00
int32 has_concerned = 35;
2023-02-01 16:02:26 +08:00
int32 post_num = 37;
string tb_age = 38;
2023-02-01 15:13:03 +08:00
int32 gender = 42;
PrivSets privSets = 45;
string fansNickname = 57;
2023-02-01 16:02:26 +08:00
int32 thread_num = 87;
int32 agree_num = 88;
2023-02-01 15:13:03 +08:00
int32 priv_thread = 92;
int32 isDefaultAvatar = 106;
2023-02-01 16:02:26 +08:00
uint32 total_agree_num = 118;
2023-03-11 00:02:08 +08:00
string ip_address = 127;
2023-02-01 15:13:03 +08:00
}