21 lines
652 B
Protocol Buffer
21 lines
652 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message FaceBookUserInfo
|
|
{
|
|
string ID = 1; //id主键
|
|
string NAME = 2; //姓名
|
|
string GENDER = 3; //性别
|
|
string BRITHDAY = 4; //出生日期
|
|
repeated string EDUCATION = 5; //教育经历,["学历:学校"]
|
|
repeated string WORK = 6; //工作经历 ["工作单位"]
|
|
repeated string LIVING = 7; //居住地址 ["家乡:地址","现住地:地址"]
|
|
repeated string CONTACT = 8; //联系方式 ["类别:地址"]
|
|
repeated string YEAR_OVERVIEW = 9; //生活纪事 ["日期:事件"]
|
|
string RELATIONSHIP = 10; //感情状况
|
|
repeated string FRIEND_IDS = 11;
|
|
}
|
|
|
|
message FaceBookUserInfoSets
|
|
{
|
|
repeated FaceBookUserInfo SETS = 1;
|
|
} |