读取邮件

master_huanxiang
gaojie 2019-01-24 17:20:45 +08:00
parent d52808f490
commit 3e16c355bc
3 changed files with 17 additions and 1 deletions

View File

@ -97,5 +97,5 @@ option optimize_for = SPEED;
}
message GMCommand{
optional string command =1 ; // uid#type#prarm1#param2
optional string command =1 ; // type#prarm1#param2
}

View File

@ -61,6 +61,12 @@ enum MessageType{
MAP_UDPATE_EVENT_REQUEST = 11204; //
MAP_UDPATE_EVENT_RESPONSE = 11205;
MAIL_READ_REQUEST = 11206; //
MAIL_READ_RESPONSE = 11207;
MAIL_TAKE_MAIL_ITEM_REQUEST = 11208; //
MAIL_TAKE_MAIL_ITEM_RESPONESE = 11209;
// N 11300
// O 11400
// P 11500

View File

@ -43,4 +43,14 @@ import "CommonProto.proto";
message GetAllMailInfoResponse{
repeated Mail mialList = 1;
}
message MailReadRequest{
optional string mailId = 1;
}
message TakeMailRequest{
repeated string mailIds = 1;
}
message TakeMailResponse{
optional Drop drop = 1;
}