34 lines
666 B
Protocol Buffer
34 lines
666 B
Protocol Buffer
|
package com.ljsd.jieling.protocols;
|
||
|
|
||
|
option optimize_for = SPEED;
|
||
|
|
||
|
import "CommonProto.proto";
|
||
|
|
||
|
|
||
|
message FamilyCreateReqeust{
|
||
|
optional string name = 1 ; //公会名称
|
||
|
optional string announce =2 ; // 公会宣言
|
||
|
}
|
||
|
|
||
|
|
||
|
message FamilySearchReqeust{
|
||
|
optional string name = 1 ;// 要搜素的公会名称
|
||
|
}
|
||
|
|
||
|
message FamilySeachResponse{
|
||
|
repeated FamilyBaseInfo familyBaseInfo =1;
|
||
|
}
|
||
|
|
||
|
message FamilyApplyRequest{
|
||
|
repeated int32 familyId = 1; //申请family
|
||
|
}
|
||
|
|
||
|
//申请成功 推送成功加入公会信息
|
||
|
message FamilyJoinIndicaion{
|
||
|
repeated FamilyBaseInfo familyBaseInfo =1;
|
||
|
}
|
||
|
|
||
|
|
||
|
message FamilyRecommandResponse{
|
||
|
repeated FamilyBaseInfo familyBaseInfo =1;
|
||
|
}
|