累计充值活动

master_huanxiang
wangyuan 2019-06-04 09:52:53 +08:00
parent 341c590c05
commit c61e623dcc
3 changed files with 15 additions and 0 deletions

View File

@ -28,6 +28,9 @@ option optimize_for = SPEED;
optional int32 buyFightCount = 13; //
optional int32 maxForce = 14 ;//
optional int32 saveAmt = 15 ;//
optional int32 rechargeTime = 16;//
}
message Privilege{

View File

@ -222,6 +222,10 @@ enum MessageType{
STORE_GOODS_REFRESH_REQUEST = 11813; //
STORE_GOODS_REFRESH_RESPONSE= 11814;
RECHARGE_INFO_REQUEST = 11815; //
RECHARGE_INFO_RESPONSE = 11816;
// T 11900
TRIGGER_EVENT_REQUEST = 11900; //
TRIGGER_EVENT_RESPONSE = 11901;

View File

@ -226,6 +226,14 @@ import "CommonProto.proto";
optional Drop drop =1;
}
message RechargeInfoRequest{
optional int32 money = 1; //
}
message RechargeInfoResponse{
optional Drop drop = 1 ;//
}