client2world_activity.proto 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  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_receive_activity_reward
  7. //{
  8. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_receive_activity_reward];
  9. // // 活动ID
  10. // optional int32 activityId = 2;
  11. //}
  12. // 领取活动奖励结果
  13. //message packetw2c_receive_activity_reward_result
  14. //{
  15. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_receive_activity_reward_result];
  16. // optional int32 result = 2;
  17. // // 活动id
  18. // optional int32 activityId = 3;
  19. //}
  20. // 请求活动状态
  21. message packetc2w_req_activity_state
  22. {
  23. optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_activity_state];
  24. }
  25. // 请求活动状态结果
  26. message packetw2c_req_activity_state_result
  27. {
  28. optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_activity_state_result];
  29. // 活动奖励的领取信息
  30. repeated msg_info_def.ActivityReceiveInfo receiveInfo = 2;
  31. // 累计充值活动期间已充值金额
  32. optional int32 activityCurRecharge = 3;
  33. }
  34. //新的引导礼包通知
  35. // message packetw2c_new_guide_gift {
  36. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_new_guide_gift];
  37. // optional msg_info_def.GuideGiftInfo gift_info = 2;
  38. // }
  39. // // 请求刷新
  40. // message packetc2w_update_guide_gift
  41. // {
  42. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_update_guide_gift];
  43. // // 等级
  44. // optional int32 fish_level = 2;
  45. // }
  46. // // 激活礼包倒计时
  47. // message packetc2w_active_guide_gift
  48. // {
  49. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_active_guide_gift];
  50. // // 激活礼包计时
  51. // optional int32 gift_id = 2;
  52. // }
  53. // // 激活礼包计时结果
  54. // message packetw2c_active_guide_gift_result
  55. // {
  56. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_active_guide_gift_result];
  57. // optional int32 giftId = 2;
  58. // // 最新的结束时间
  59. // optional int32 newEndTime = 3;
  60. // optional int32 result = 4;
  61. // }
  62. // // 获取礼包刷新时间
  63. // message packetc2w_get_guide_gift_refreshtime
  64. // {
  65. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_get_guide_gift_refreshtime];
  66. // // 礼包ID列表
  67. // repeated int32 giftIds = 2;
  68. // }
  69. // message GuideGiftRTime
  70. // {
  71. // optional int32 giftId = 1;
  72. // optional int32 refreshTime = 2;
  73. // }
  74. // // 获取礼包刷新时间结果
  75. // message packetw2c_get_guide_gift_refreshtime_result
  76. // {
  77. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_get_guide_gift_refreshtime_result];
  78. // repeated GuideGiftRTime rtList = 2;
  79. // }
  80. // 领取礼包
  81. // message packetc2w_get_guide_gift
  82. // {
  83. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_get_guide_gift];
  84. // // 礼包ID
  85. // optional int32 gift_id = 2;
  86. // }
  87. // // 领取礼包结果
  88. // message packetw2c_get_guide_gift_result
  89. // {
  90. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_get_guide_gift_result];
  91. // optional msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
  92. // }
  93. // 请求VIP福利
  94. // message packetc2w_ask_vip_gold
  95. // {
  96. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_ask_vip_gold];
  97. // }
  98. // // VIP福利结果
  99. // message packetw2c_vip_gold_result
  100. // {
  101. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_vip_gold_result];
  102. // optional msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
  103. // optional int32 give_gold = 3;
  104. // }
  105. // 购买材料礼包
  106. // message packetc2w_buy_material_gift
  107. // {
  108. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_buy_material_gift];
  109. // optional int32 materialGiftId = 2;
  110. // }
  111. // // 购买材料礼包结果
  112. // message packetw2c_buy_material_gift_result
  113. // {
  114. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_buy_material_gift_result];
  115. // optional int32 result = 2;
  116. // optional int32 materialGiftId = 3;
  117. // }
  118. // 领取cdkey奖励
  119. message packetc2w_receive_cdkey
  120. {
  121. optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_receive_cdkey];
  122. optional string cdkey = 2;
  123. }
  124. // 领取cdkey奖励结果
  125. message packetw2c_receive_cdkey_result
  126. {
  127. optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_receive_cdkey_result];
  128. optional int32 result = 2;
  129. optional int32 giftId = 3;
  130. }
  131. // 同步玩家任务状态
  132. message packetw2c_sync_activity_result
  133. {
  134. optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_sync_activity_result];
  135. optional int32 active = 2; // 活跃度
  136. repeated int32 hasGetActiveBox = 3; //今日已领取的活跃度宝箱
  137. }
  138. ////////////////////////////抢购活动/////////////////////////////////////////
  139. // 请求抢购
  140. // message packetc2w_req_panic_buy
  141. // {
  142. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_panic_buy];
  143. // // 活动ID
  144. // optional int32 actId = 2;
  145. // }
  146. // // 请求抢购结果
  147. // message packetw2c_req_panic_buy_result
  148. // {
  149. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_panic_buy_result];
  150. // optional int32 actId = 2;
  151. // optional int32 result = 3;
  152. // // 支付截止时间( > 0表示是 支付抢购活动, ==0 是抢免费金币)
  153. // optional int32 payDeadTime = 4;
  154. // // 免费获得的金币
  155. // optional int32 freeGold = 5;
  156. // }
  157. // // 请求抢购信息
  158. // message packetc2w_req_panic_info
  159. // {
  160. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_panic_info];
  161. // }
  162. // message PanicInfo
  163. // {
  164. // // 活动ID
  165. // optional int32 actId = 1;
  166. // // 剩余数量
  167. // optional int32 remainCount = 2;
  168. // // 自身状态 0已购买 1未购买 2已占位(对支付活动)
  169. // optional int32 selfState = 3;
  170. // // 支付截止时间
  171. // optional int32 payDeadTime = 4;
  172. // // 免费获得的金币
  173. // optional int32 freeGold = 5;
  174. // }
  175. // // 请求抢购信息结果
  176. // message packetw2c_req_panic_info_result
  177. // {
  178. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_panic_info_result];
  179. // repeated PanicInfo infoList = 2;
  180. // // 活动结束时间 0表示活动还没有开始
  181. // optional int32 endTime = 3;
  182. // }
  183. ////////////////////////////拉霸抽奖/////////////////////////////////////////
  184. // 请求拉霸抽奖
  185. // message packetc2w_req_laba_rlottery
  186. // {
  187. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_laba_rlottery];
  188. // }
  189. // // 请求拉霸抽奖结果
  190. // message packetw2c_req_laba_rlottery_result
  191. // {
  192. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_laba_rlottery_result];
  193. // optional int32 result = 2;
  194. // // 结果id
  195. // optional int32 lotteryId = 3;
  196. // }
  197. // // 请求拉霸信息
  198. // message packetc2w_req_laba_info
  199. // {
  200. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_laba_info];
  201. // }
  202. // // 请求拉霸信息结果
  203. // message packetw2c_req_laba_info_result
  204. // {
  205. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_laba_info_result];
  206. // // 充值的人民币
  207. // optional int32 rmb = 2;
  208. // // 活动期间的累计充值,只增不减
  209. // optional int32 accRmb = 3;
  210. // }
  211. // // 请求抽奖通知消息
  212. // message packetc2w_req_laba_notify_msg
  213. // {
  214. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_laba_notify_msg];
  215. // optional int32 time = 2;
  216. // }
  217. // message LabaNotifyMsg
  218. // {
  219. // optional string nickName = 1;
  220. // optional int32 itemId = 2;
  221. // optional int32 itemCount = 3;
  222. // optional int32 LotteryId = 4;
  223. // }
  224. // // 请求抽奖通知消息结果
  225. // message packetw2c_req_laba_notify_msg_result
  226. // {
  227. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_laba_notify_msg_result];
  228. // repeated LabaNotifyMsg msgList = 2;
  229. // // 新的时间点,客户端需要保存
  230. // optional int32 newTime = 3;
  231. // }
  232. ////////////////////////////集玩偶活动/////////////////////////////////////////
  233. // 请求集玩偶界面信息
  234. // message packetc2w_req_collect_puppet_info
  235. // {
  236. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_collect_puppet_info];
  237. // }
  238. // message PuppetRankInfo
  239. // {
  240. // // 捐赠数量
  241. // optional int32 donateCount = 1;
  242. // // 昵称
  243. // optional string nickName = 2;
  244. // optional int32 playerId = 3;
  245. // }
  246. // message DonateRecvInfo
  247. // {
  248. // // 奖励id
  249. // optional int32 rewardId = 1;
  250. // // 是否领取
  251. // optional bool isReceive = 2;
  252. // }
  253. // // 请求集玩偶界面信息结果
  254. // message packetw2c_req_collect_puppet_info_result
  255. // {
  256. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_collect_puppet_info_result];
  257. // // 自己捐赠的玩偶数量
  258. // optional int32 selfDonateCount = 2;
  259. // // 全服捐赠玩偶数量
  260. // optional int32 fullSvrDonateCount = 3;
  261. // // 排行榜,列表索引就是排名序号
  262. // repeated PuppetRankInfo rankList = 4;
  263. // // 当前拥有的玩偶
  264. // optional int32 ownPuppetCount = 5;
  265. // // 各奖励领取信息
  266. // repeated DonateRecvInfo recvList = 6;
  267. // }
  268. // // 领取捐赠玩偶奖励
  269. // message packetc2w_recv_donate_reward
  270. // {
  271. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_recv_donate_reward];
  272. // // 奖励id
  273. // optional int32 rewardId = 2;
  274. // }
  275. // // 领取捐赠玩偶奖励结果
  276. // message packetw2c_recv_donate_reward_result
  277. // {
  278. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_recv_donate_reward_result];
  279. // // 奖励id
  280. // optional int32 rewardId = 2;
  281. // // 结果
  282. // optional int32 result = 3;
  283. // }
  284. // // 捐赠玩偶
  285. // message packetc2w_donate_puppet
  286. // {
  287. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_donate_puppet];
  288. // // 捐赠数量
  289. // optional int32 count = 2;
  290. // }
  291. // // 捐赠玩偶结果
  292. // message packetw2c_donate_puppet_result
  293. // {
  294. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_donate_puppet_result];
  295. // // 捐赠数量
  296. // optional int32 count = 2;
  297. // // 结果
  298. // optional int32 result = 3;
  299. // }
  300. // // 请求集玩偶活动进度
  301. // message packetc2w_req_puppet_act_progress
  302. // {
  303. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_puppet_act_progress];
  304. // }
  305. // message PuppetActInfo
  306. // {
  307. // // 任务id
  308. // optional int32 actId = 1;
  309. // // 当前进度
  310. // optional int32 curProgress = 2;
  311. // }
  312. // // 请求集玩偶活动进度结果
  313. // message packetw2c_req_puppet_act_progress_result
  314. // {
  315. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_puppet_act_progress_result];
  316. // repeated PuppetActInfo actList = 2;
  317. // }
  318. // // 用钻石购买玩偶
  319. // message packetc2w_buy_puppet
  320. // {
  321. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_buy_puppet];
  322. // // 购买数量
  323. // optional int32 count = 2;
  324. // }
  325. // // 用钻石购买玩偶结果
  326. // message packetw2c_buy_puppet_result
  327. // {
  328. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_buy_puppet_result];
  329. // // 结果
  330. // optional int32 result = 2;
  331. // // 购买数量
  332. // optional int32 count = 3;
  333. // }
  334. // // 捐赠排行榜
  335. // message packetc2w_req_donate_rank
  336. // {
  337. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_donate_rank];
  338. // }
  339. // // 捐赠排行榜结果
  340. // message packetw2c_req_donate_rank_result
  341. // {
  342. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_donate_rank_result];
  343. // // 排行榜,列表索引就是排名序号
  344. // repeated PuppetRankInfo rankList = 2;
  345. // }
  346. ////////////////////////////万炮活动/////////////////////////////////////////
  347. // 请求万炮信息
  348. // message packetc2w_req_wp_info
  349. // {
  350. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_wp_info];
  351. // }
  352. // message WpRewardInfo
  353. // {
  354. // optional int32 fishLevel = 1;
  355. // // 是否已领取奖励
  356. // optional bool isRecv = 2;
  357. // }
  358. // // 请求万炮信息结果
  359. // message packetw2c_req_wp_info_result
  360. // {
  361. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_wp_info_result];
  362. // // 自己的捕鱼等级
  363. // optional int32 fishLevel = 2;
  364. // repeated WpRewardInfo rewardList = 3;
  365. // // 是否领取了排行榜奖励
  366. // optional bool isRecvRankReward = 4;
  367. // // 当前排名 -1表示没有排名
  368. // optional int32 curRank = 5;
  369. // }
  370. // // 请求领取万炮奖励
  371. // message packetc2w_req_recv_wpreward
  372. // {
  373. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_recv_wpreward];
  374. // // -1 表示领取排行榜奖励
  375. // optional int32 fishLevel = 2;
  376. // }
  377. // // 请求领取万炮奖励结果
  378. // message packetw2c_req_recv_wpreward_result
  379. // {
  380. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_recv_wpreward_result];
  381. // optional int32 fishLevel = 2;
  382. // optional int32 result = 3;
  383. // }
  384. // // 请求万炮排行榜
  385. // message packetc2w_req_wprank
  386. // {
  387. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_wprank];
  388. // }
  389. // message WpRankInfo
  390. // {
  391. // optional string nickName = 1;
  392. // optional int32 reachWpTime = 2;
  393. // }
  394. // // 请求万炮排行榜结果
  395. // message packetw2c_req_wprank_result
  396. // {
  397. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_wprank_result];
  398. // repeated WpRankInfo rankList = 2;
  399. // }
  400. ////////////////////////////国庆活动/////////////////////////////////////////
  401. // 领取登录奖励
  402. // message packetc2w_req_recv_loginreward
  403. // {
  404. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_recv_loginreward];
  405. // }
  406. // // 领取登录奖励结果
  407. // message packetw2c_req_recv_loginreward_result
  408. // {
  409. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_recv_loginreward_result];
  410. // optional int32 rewardId = 2;
  411. // optional int32 result = 3;
  412. // }
  413. // // 请求国庆鱼排行
  414. // message packetc2w_req_guoqing_fish_rank
  415. // {
  416. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_guoqing_fish_rank];
  417. // }
  418. // message NdRankInfo
  419. // {
  420. // optional string nickName = 1;
  421. // optional int32 fishCount = 2;
  422. // }
  423. // // 请求国庆鱼排行结果
  424. // message packetw2c_req_guoqing_fish_rank_result
  425. // {
  426. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_guoqing_fish_rank_result];
  427. // repeated NdRankInfo rankList = 2;
  428. // // 自己的排名 -1表示未上榜
  429. // optional int32 selfRank = 3;
  430. // // 今日是否领取了奖励
  431. // optional bool isRecvLoginReward = 4;
  432. // // 自己的击杀数量
  433. // optional int32 selfFishCount = 5;
  434. // }
  435. ////////////////////////////今秋特惠活动/////////////////////////////////////////
  436. // 请求今秋特惠信息
  437. // message packetc2w_req_jinqiu_info
  438. // {
  439. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_jinqiu_info];
  440. // }
  441. // message JinQiuInfo
  442. // {
  443. // optional int32 giftId = 1;
  444. // // 今日已抽奖次数
  445. // optional int32 hasLotteryCount = 2;
  446. // }
  447. // // 请求今秋特惠信息结果
  448. // message packetw2c_req_jinqiu_info_result
  449. // {
  450. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_jinqiu_info_result];
  451. // repeated JinQiuInfo infoList = 2;
  452. // }
  453. // // 请求今秋特惠抽奖
  454. // message packetc2w_req_jinqiu_lottery
  455. // {
  456. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_jinqiu_lottery];
  457. // // 充值id
  458. // optional int32 rechargeId = 2;
  459. // }
  460. // // 请求今秋特惠抽奖结果
  461. // message packetw2c_req_jinqiu_lottery_result
  462. // {
  463. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_jinqiu_lottery_result];
  464. // optional int32 gold = 2;
  465. // optional int32 result = 3;
  466. // }
  467. ////////////////////////////万圣节活动/////////////////////////////////////////
  468. // 请求万圣节活动信息
  469. // message packetc2w_req_hallowmas_info
  470. // {
  471. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_hallowmas_info];
  472. // }
  473. // // 请求万圣节活动信息结果
  474. // message packetw2c_req_hallowmas_info_result
  475. // {
  476. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_hallowmas_info_result];
  477. // // 当前拥有南瓜数量
  478. // optional int32 curPumpkinCount = 2;
  479. // // 今日已购买南瓜数量
  480. // optional int32 hasBuyPumpkinCount = 3;
  481. // // 已领取单人奖励的档位id
  482. // repeated int32 hasRecvSingleRewardIds = 4;
  483. // // 自己的排名 -1表示未上榜
  484. // optional int32 selfRank = 5;
  485. // // 排行榜前50名
  486. // repeated NdRankInfo rankList = 6;
  487. // }
  488. // // 领取万圣节档位奖励
  489. // message packetc2w_req_recv_hallowmas_level_reward
  490. // {
  491. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_recv_hallowmas_level_reward];
  492. // // 档位id
  493. // optional int32 levelId = 2;
  494. // }
  495. // // 领取万圣节档位奖励结果
  496. // message packetw2c_req_recv_hallowmas_level_reward_result
  497. // {
  498. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_recv_hallowmas_level_reward_result];
  499. // optional int32 levelId = 2;
  500. // optional int32 result = 3;
  501. // }
  502. // // 购买南瓜
  503. // message packetc2w_req_buy_pumpkin
  504. // {
  505. // optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_buy_pumpkin];
  506. // // 购买个数
  507. // optional int32 count = 2;
  508. // }
  509. // // 购买南瓜结果
  510. // message packetw2c_req_buy_pumpkin_result
  511. // {
  512. // optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_buy_pumpkin_result];
  513. // optional int32 count = 2;
  514. // optional int32 result = 3;
  515. // }
  516. // 获取成长基金信息
  517. message packetc2w_get_grow_fund_info
  518. {
  519. optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_get_grow_fund_info];
  520. }
  521. // 获取成长基金信息
  522. message packetw2c_get_grow_fund_info_result
  523. {
  524. optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_get_grow_fund_info_result];
  525. repeated bool isReceived = 2;
  526. optional int32 rechared = 3;
  527. }
  528. // 领取成长基金奖励
  529. message packetc2w_receive_grow_fund_reward
  530. {
  531. optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_receive_grow_fund_reward];
  532. optional int32 rewardid = 2;
  533. }
  534. // 领取成长基金奖励结果
  535. message packetw2c_receive_grow_fund_reward_result
  536. {
  537. optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_receive_grow_fund_reward_result];
  538. optional int32 result = 2;
  539. optional int32 rewardid = 3;
  540. }
  541. // 客户端成长基金打点统计
  542. message packetc2w_grow_fund_record
  543. {
  544. optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_grow_fund_record];
  545. }