client2world_dial_lottery.proto 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. import "client2world_msg_type.proto";
  2. import "msg_type_def.proto";
  3. import "msg_info_def.proto";
  4. package client2world_protocols;
  5. // 请求领取周卡奖励
  6. // message packetc2w_req_week_card_reward
  7. // {
  8. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_week_card_reward];
  9. // }
  10. // 请求领取周卡奖励结果
  11. // message packetw2c_req_week_card_reward_result
  12. // {
  13. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_week_card_reward_result];
  14. // // 抽奖结果
  15. // optional int32 result = 2;
  16. // // 奖励id, 对应 M_GiftRewardCFG 字段
  17. // optional int32 rewardId = 3;
  18. // }
  19. // 请求转盘标志
  20. // message packetc2w_req_dial_lottery_flag
  21. // {
  22. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_dial_lottery_flag];
  23. // }
  24. // 请求转盘标志结果
  25. // message packetw2c_req_dial_lottery_flag_result
  26. // {
  27. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_dial_lottery_flag_result];
  28. // // 今日是否抽过奖,true已抽
  29. // optional bool isLotteryToday = 2;
  30. // // 已连续签到次数
  31. // optional int32 hasSignCount = 3;
  32. // }
  33. // 领取月卡奖励 1普通 1金币 2钻石
  34. message packetc2w_req_month_card_reward
  35. {
  36. optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_month_card_reward];
  37. optional int32 type = 2;
  38. }
  39. // 领取月卡奖励结果
  40. message packetw2c_req_month_card_reward_result
  41. {
  42. optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_month_card_reward_result];
  43. optional int32 result = 2;
  44. optional int32 type = 3;
  45. optional int32 rewardId = 4;
  46. }
  47. // 领取周卡奖励
  48. message packetc2w_req_week_card_reward
  49. {
  50. optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_week_card_reward];
  51. }
  52. // 领取周卡奖励结果
  53. message packetw2c_req_week_card_reward_result
  54. {
  55. optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_week_card_reward_result];
  56. optional int32 result = 2;
  57. // 奖励id
  58. optional int32 rewardId = 3;
  59. }