master_huanxiang
gaojie 2019-01-23 18:40:59 +08:00
parent 9bba84907c
commit d52808f490
3 changed files with 19 additions and 4 deletions

View File

@ -73,8 +73,16 @@ option optimize_for = SPEED;
message Mail{
optional int32 mailId = 1;
optional int32 itemId = 2;
optional string mailId = 1;
optional int32 state = 2; //0: 1: 2: 3
optional string head = 3;
optional string content = 4;
optional string mailItem = 5; //
optional int32 sendTime = 6;
optional int32 effectiveTime = 7; // 0:
optional string sendName = 8 ; //
optional int32 mailType = 9; // 1: 2:idip
}

View File

@ -39,6 +39,9 @@ enum MessageType{
GM_REQUEST = 10606; //GM
GM_RESPONSE = 10607; //GM
GET_ALL_MAIL_INFO_REQUEST = 10608; //
GET_ALL_MAIL_INFO_RESPONSE = 10609;
// H 10700
HERO_RAND_REQQUEST = 10701;

View File

@ -33,10 +33,14 @@ import "CommonProto.proto";
message GetItemInfoRequest{
optional int32 index = 1; //1 :1+
optional int32 index = 1; //0, :+
}
message GetItemInfoResponse{
repeated Item itemlist = 1;
optional bool isSendFinish =2; //
}
}
message GetAllMailInfoResponse{
repeated Mail mialList = 1;
}