master_huanxiang
lvxinran 2020-04-01 14:17:52 +08:00
commit 1071da720c
3 changed files with 28 additions and 1 deletions

View File

@ -769,4 +769,11 @@ option optimize_for = SPEED;
optional string id = 1; optional string id = 1;
optional int32 equiptId = 2; optional int32 equiptId = 2;
} }
message MonthCardInfo{
optional int32 id = 1;
optional int32 endingTime = 2;
optional int32 state = 3;//1 0
optional int32 totleAmt = 4;//
}

View File

@ -843,4 +843,8 @@ enum MessageType{
EXPEDITION_HOLY_BAG_INDICATION = 20016; // EXPEDITION_HOLY_BAG_INDICATION = 20016; //
EXPEDITION_NOINFO_INDICATION = 20017; // EXPEDITION_NOINFO_INDICATION = 20017; //
// 20101 - 20110
MONTHCARD_TAKE_DAILY_REQUEST =20101;
MONTHCARD_TAKE_DAILY_RESPONSE =20102;
MONTHCARD_INDICATION =20103;
} }

View File

@ -65,7 +65,7 @@ import "CommonProto.proto";
optional int32 amount = 26;// optional int32 amount = 26;//
optional int32 vipDaily = 27;// 0 >0vip optional int32 vipDaily = 27;// 0 >0vip
optional int32 missingRefreshCount = 28;// optional int32 missingRefreshCount = 28;//
repeated MonthCardInfo monthinfos = 29;//
} }
@ -376,6 +376,7 @@ import "CommonProto.proto";
optional PlayerBindPhone playerBindPhone = 7;// optional PlayerBindPhone playerBindPhone = 7;//
repeated LuckWheelRewardPosInfo posInfos = 8;// repeated LuckWheelRewardPosInfo posInfos = 8;//
repeated LuckWheelRewardPosInfo posInfosAdvance = 9;// repeated LuckWheelRewardPosInfo posInfosAdvance = 9;//
repeated int32 MonthDailyTake=10;//id
} }
@ -652,6 +653,8 @@ import "CommonProto.proto";
message RefreshRechargeIndication{ message RefreshRechargeIndication{
optional int32 amount = 1;// optional int32 amount = 1;//
optional int32 monthSaveAmt = 2 ; //
optional int32 smonthSaveAmt = 3 ; //
} }
message VipTakeDilyRequest{ message VipTakeDilyRequest{
@ -688,5 +691,18 @@ import "CommonProto.proto";
optional int32 dayTime = 1; optional int32 dayTime = 1;
optional int32 weekTime = 2; optional int32 weekTime = 2;
} }
message MonthCardIndication{
repeated MonthCardInfo monthinfos = 1;
}
message TakeMothDilyRequest{
optional int32 type=1;
}
message TakeMothDilyResponse{
optional Drop drop =1;
}