vip等级奖励
parent
bbf1974bce
commit
c200c25b36
|
|
@ -972,3 +972,11 @@ option optimize_for = SPEED;
|
|||
optional string subId = 3;//神印附属英雄id
|
||||
optional int32 state = 4;//神印状态 0:未使用,1:已使用
|
||||
}
|
||||
|
||||
//通用键值对
|
||||
message KeyVal{
|
||||
optional int32 key = 1;
|
||||
optional int32 val = 2;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -872,4 +872,17 @@ import "CommonProto.proto";
|
|||
message HardStageReportResponse{
|
||||
repeated HardStagePlayerInfo player = 1;
|
||||
}
|
||||
//特权等级奖励状态
|
||||
message VipLevelStateRequset{
|
||||
}
|
||||
message VipLevelStateResponse{
|
||||
repeated KeyVal vipState = 1;//键值对<id,领取状态(0,未领取,1已领取)>
|
||||
}
|
||||
//特权等级奖励领取
|
||||
message VipLevelStateRequset{
|
||||
optional int32 vipLevelId = 1;
|
||||
}
|
||||
message VipLevelStateResponse{
|
||||
repeated bool isSuccess = 1;//是否领取成功
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue