_attendanceHandler.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // ***************************************************************************
  10. // * 作者= jjr
  11. // * 创建时间= 2017-04-24
  12. // * 用途= 签到处理器
  13. // ***************************************************************************
  14. // Generated from: attendanceHandler.proto
  15. // Note: requires additional types generated from: common.proto
  16. // Note: requires additional types generated from: item.proto
  17. namespace pomelo.area
  18. {
  19. //---------------------------------------------------------------------------------------
  20. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetAttendanceInfoRequest")]
  21. public partial class GetAttendanceInfoRequest : global::ProtoBuf.IExtensible
  22. {
  23. public GetAttendanceInfoRequest() {}
  24. private global::ProtoBuf.IExtension extensionObject;
  25. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  26. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  27. }
  28. //---------------------------------------------------------------------------------------
  29. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDailyRewardRequest")]
  30. public partial class GetDailyRewardRequest : global::ProtoBuf.IExtensible
  31. {
  32. public GetDailyRewardRequest() {}
  33. private global::ProtoBuf.IExtension extensionObject;
  34. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  35. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  36. }
  37. //---------------------------------------------------------------------------------------
  38. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetCumulativeRewardRequest")]
  39. public partial class GetCumulativeRewardRequest : global::ProtoBuf.IExtensible
  40. {
  41. public GetCumulativeRewardRequest() {}
  42. private int _id;
  43. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  44. public int id
  45. {
  46. get { return _id; }
  47. set { _id = value; }
  48. }
  49. private global::ProtoBuf.IExtension extensionObject;
  50. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  51. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  52. }
  53. //---------------------------------------------------------------------------------------
  54. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetLuxuryRewardRequest")]
  55. public partial class GetLuxuryRewardRequest : global::ProtoBuf.IExtensible
  56. {
  57. public GetLuxuryRewardRequest() {}
  58. private global::ProtoBuf.IExtension extensionObject;
  59. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  60. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  61. }
  62. //---------------------------------------------------------------------------------------
  63. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetLeftVipRewardRequest")]
  64. public partial class GetLeftVipRewardRequest : global::ProtoBuf.IExtensible
  65. {
  66. public GetLeftVipRewardRequest() {}
  67. private int _id;
  68. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  69. public int id
  70. {
  71. get { return _id; }
  72. set { _id = value; }
  73. }
  74. private global::ProtoBuf.IExtension extensionObject;
  75. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  76. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  77. }
  78. //---------------------------------------------------------------------------------------
  79. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"DailyInfo")]
  80. public partial class DailyInfo : global::ProtoBuf.IExtensible
  81. {
  82. public DailyInfo() {}
  83. private int _id;
  84. /// <summary>
  85. /// 序号
  86. /// </summary>
  87. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  88. public int id
  89. {
  90. get { return _id; }
  91. set { _id = value; }
  92. }
  93. private pomelo.item.MiniItem _itemList = null;
  94. /// <summary>
  95. /// 奖励
  96. /// </summary>
  97. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"itemList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  98. [global::System.ComponentModel.DefaultValue(null)]
  99. public pomelo.item.MiniItem itemList
  100. {
  101. get { return _itemList; }
  102. set { _itemList = value; }
  103. }
  104. private int _vipDoubleLevel = default(int);
  105. /// <summary>
  106. /// VIP双倍等级,0为无vip等级双倍
  107. /// </summary>
  108. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"vipDoubleLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  109. [global::System.ComponentModel.DefaultValue(default(int))]
  110. public int vipDoubleLevel
  111. {
  112. get { return _vipDoubleLevel; }
  113. set { _vipDoubleLevel = value; }
  114. }
  115. private int _state = default(int);
  116. /// <summary>
  117. /// 1:未领取 2:已领取 3:未领取vip部分
  118. /// </summary>
  119. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"state", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  120. [global::System.ComponentModel.DefaultValue(default(int))]
  121. public int state
  122. {
  123. get { return _state; }
  124. set { _state = value; }
  125. }
  126. private global::ProtoBuf.IExtension extensionObject;
  127. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  128. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  129. }
  130. //---------------------------------------------------------------------------------------
  131. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CumulativeInfo")]
  132. public partial class CumulativeInfo : global::ProtoBuf.IExtensible
  133. {
  134. public CumulativeInfo() {}
  135. private int _id;
  136. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  137. public int id
  138. {
  139. get { return _id; }
  140. set { _id = value; }
  141. }
  142. private readonly global::System.Collections.Generic.List<pomelo.item.MiniItem> _itemList = new global::System.Collections.Generic.List<pomelo.item.MiniItem>();
  143. [global::ProtoBuf.ProtoMember(2, Name=@"itemList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  144. public global::System.Collections.Generic.List<pomelo.item.MiniItem> itemList
  145. {
  146. get { return _itemList; }
  147. }
  148. private int _needCountDay = default(int);
  149. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"needCountDay", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  150. [global::System.ComponentModel.DefaultValue(default(int))]
  151. public int needCountDay
  152. {
  153. get { return _needCountDay; }
  154. set { _needCountDay = value; }
  155. }
  156. private int _state = default(int);
  157. /// <summary>
  158. /// 0:条件不满足 1:未领取 2:已领取
  159. /// </summary>
  160. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"state", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  161. [global::System.ComponentModel.DefaultValue(default(int))]
  162. public int state
  163. {
  164. get { return _state; }
  165. set { _state = value; }
  166. }
  167. private string _boxIcon = "";
  168. /// <summary>
  169. /// 宝箱显示图标
  170. /// </summary>
  171. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"boxIcon", DataFormat = global::ProtoBuf.DataFormat.Default)]
  172. [global::System.ComponentModel.DefaultValue("")]
  173. public string boxIcon
  174. {
  175. get { return _boxIcon; }
  176. set { _boxIcon = value; }
  177. }
  178. private global::ProtoBuf.IExtension extensionObject;
  179. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  180. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  181. }
  182. //---------------------------------------------------------------------------------------
  183. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AttendanceInfo")]
  184. public partial class AttendanceInfo : global::ProtoBuf.IExtensible
  185. {
  186. public AttendanceInfo() {}
  187. private int _todayState = default(int);
  188. /// <summary>
  189. /// 1:未签到 2:已签到
  190. /// </summary>
  191. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"todayState", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  192. [global::System.ComponentModel.DefaultValue(default(int))]
  193. public int todayState
  194. {
  195. get { return _todayState; }
  196. set { _todayState = value; }
  197. }
  198. private int _signedCount = default(int);
  199. /// <summary>
  200. /// 累计签到天数
  201. /// </summary>
  202. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"signedCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  203. [global::System.ComponentModel.DefaultValue(default(int))]
  204. public int signedCount
  205. {
  206. get { return _signedCount; }
  207. set { _signedCount = value; }
  208. }
  209. private readonly global::System.Collections.Generic.List<pomelo.area.DailyInfo> _dailyList = new global::System.Collections.Generic.List<pomelo.area.DailyInfo>();
  210. [global::ProtoBuf.ProtoMember(3, Name=@"dailyList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  211. public global::System.Collections.Generic.List<pomelo.area.DailyInfo> dailyList
  212. {
  213. get { return _dailyList; }
  214. }
  215. private readonly global::System.Collections.Generic.List<pomelo.area.CumulativeInfo> _cumulativeList = new global::System.Collections.Generic.List<pomelo.area.CumulativeInfo>();
  216. [global::ProtoBuf.ProtoMember(4, Name=@"cumulativeList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  217. public global::System.Collections.Generic.List<pomelo.area.CumulativeInfo> cumulativeList
  218. {
  219. get { return _cumulativeList; }
  220. }
  221. private global::ProtoBuf.IExtension extensionObject;
  222. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  223. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  224. }
  225. //---------------------------------------------------------------------------------------
  226. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LuxuryInfo")]
  227. public partial class LuxuryInfo : global::ProtoBuf.IExtensible
  228. {
  229. public LuxuryInfo() {}
  230. private readonly global::System.Collections.Generic.List<pomelo.item.MiniItem> _itemList = new global::System.Collections.Generic.List<pomelo.item.MiniItem>();
  231. [global::ProtoBuf.ProtoMember(1, Name=@"itemList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  232. public global::System.Collections.Generic.List<pomelo.item.MiniItem> itemList
  233. {
  234. get { return _itemList; }
  235. }
  236. private int _state = default(int);
  237. /// <summary>
  238. /// 0:条件不满足(未充值) 1:未领取 2:已领取
  239. /// </summary>
  240. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"state", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  241. [global::System.ComponentModel.DefaultValue(default(int))]
  242. public int state
  243. {
  244. get { return _state; }
  245. set { _state = value; }
  246. }
  247. private global::ProtoBuf.IExtension extensionObject;
  248. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  249. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  250. }
  251. //---------------------------------------------------------------------------------------
  252. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetAttendanceInfoResponse")]
  253. public partial class GetAttendanceInfoResponse : global::ProtoBuf.IExtensible
  254. {
  255. public GetAttendanceInfoResponse() {}
  256. private int _s2c_code;
  257. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  258. public int s2c_code
  259. {
  260. get { return _s2c_code; }
  261. set { _s2c_code = value; }
  262. }
  263. private string _s2c_msg = "";
  264. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  265. [global::System.ComponentModel.DefaultValue("")]
  266. public string s2c_msg
  267. {
  268. get { return _s2c_msg; }
  269. set { _s2c_msg = value; }
  270. }
  271. private pomelo.area.AttendanceInfo _s2c_attendance = null;
  272. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_attendance", DataFormat = global::ProtoBuf.DataFormat.Default)]
  273. [global::System.ComponentModel.DefaultValue(null)]
  274. public pomelo.area.AttendanceInfo s2c_attendance
  275. {
  276. get { return _s2c_attendance; }
  277. set { _s2c_attendance = value; }
  278. }
  279. private pomelo.area.LuxuryInfo _s2c_luxury = null;
  280. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_luxury", DataFormat = global::ProtoBuf.DataFormat.Default)]
  281. [global::System.ComponentModel.DefaultValue(null)]
  282. public pomelo.area.LuxuryInfo s2c_luxury
  283. {
  284. get { return _s2c_luxury; }
  285. set { _s2c_luxury = value; }
  286. }
  287. private global::ProtoBuf.IExtension extensionObject;
  288. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  289. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  290. }
  291. //---------------------------------------------------------------------------------------
  292. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetDailyRewardResponse")]
  293. public partial class GetDailyRewardResponse : global::ProtoBuf.IExtensible
  294. {
  295. public GetDailyRewardResponse() {}
  296. private int _s2c_code;
  297. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  298. public int s2c_code
  299. {
  300. get { return _s2c_code; }
  301. set { _s2c_code = value; }
  302. }
  303. private string _s2c_msg = "";
  304. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  305. [global::System.ComponentModel.DefaultValue("")]
  306. public string s2c_msg
  307. {
  308. get { return _s2c_msg; }
  309. set { _s2c_msg = value; }
  310. }
  311. private pomelo.area.AttendanceInfo _s2c_attendance = null;
  312. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_attendance", DataFormat = global::ProtoBuf.DataFormat.Default)]
  313. [global::System.ComponentModel.DefaultValue(null)]
  314. public pomelo.area.AttendanceInfo s2c_attendance
  315. {
  316. get { return _s2c_attendance; }
  317. set { _s2c_attendance = value; }
  318. }
  319. private global::ProtoBuf.IExtension extensionObject;
  320. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  321. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  322. }
  323. //---------------------------------------------------------------------------------------
  324. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetCumulativeRewardResponse")]
  325. public partial class GetCumulativeRewardResponse : global::ProtoBuf.IExtensible
  326. {
  327. public GetCumulativeRewardResponse() {}
  328. private int _s2c_code;
  329. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  330. public int s2c_code
  331. {
  332. get { return _s2c_code; }
  333. set { _s2c_code = value; }
  334. }
  335. private string _s2c_msg = "";
  336. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  337. [global::System.ComponentModel.DefaultValue("")]
  338. public string s2c_msg
  339. {
  340. get { return _s2c_msg; }
  341. set { _s2c_msg = value; }
  342. }
  343. private pomelo.area.AttendanceInfo _s2c_attendance = null;
  344. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_attendance", DataFormat = global::ProtoBuf.DataFormat.Default)]
  345. [global::System.ComponentModel.DefaultValue(null)]
  346. public pomelo.area.AttendanceInfo s2c_attendance
  347. {
  348. get { return _s2c_attendance; }
  349. set { _s2c_attendance = value; }
  350. }
  351. private global::ProtoBuf.IExtension extensionObject;
  352. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  353. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  354. }
  355. //---------------------------------------------------------------------------------------
  356. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetLuxuryRewardResponse")]
  357. public partial class GetLuxuryRewardResponse : global::ProtoBuf.IExtensible
  358. {
  359. public GetLuxuryRewardResponse() {}
  360. private int _s2c_code;
  361. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  362. public int s2c_code
  363. {
  364. get { return _s2c_code; }
  365. set { _s2c_code = value; }
  366. }
  367. private string _s2c_msg = "";
  368. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  369. [global::System.ComponentModel.DefaultValue("")]
  370. public string s2c_msg
  371. {
  372. get { return _s2c_msg; }
  373. set { _s2c_msg = value; }
  374. }
  375. private pomelo.area.LuxuryInfo _s2c_luxury = null;
  376. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_luxury", DataFormat = global::ProtoBuf.DataFormat.Default)]
  377. [global::System.ComponentModel.DefaultValue(null)]
  378. public pomelo.area.LuxuryInfo s2c_luxury
  379. {
  380. get { return _s2c_luxury; }
  381. set { _s2c_luxury = value; }
  382. }
  383. private global::ProtoBuf.IExtension extensionObject;
  384. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  385. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  386. }
  387. //---------------------------------------------------------------------------------------
  388. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetLeftVipRewardResponse")]
  389. public partial class GetLeftVipRewardResponse : global::ProtoBuf.IExtensible
  390. {
  391. public GetLeftVipRewardResponse() {}
  392. private int _s2c_code;
  393. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  394. public int s2c_code
  395. {
  396. get { return _s2c_code; }
  397. set { _s2c_code = value; }
  398. }
  399. private string _s2c_msg = "";
  400. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  401. [global::System.ComponentModel.DefaultValue("")]
  402. public string s2c_msg
  403. {
  404. get { return _s2c_msg; }
  405. set { _s2c_msg = value; }
  406. }
  407. private pomelo.area.AttendanceInfo _s2c_attendance = null;
  408. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_attendance", DataFormat = global::ProtoBuf.DataFormat.Default)]
  409. [global::System.ComponentModel.DefaultValue(null)]
  410. public pomelo.area.AttendanceInfo s2c_attendance
  411. {
  412. get { return _s2c_attendance; }
  413. set { _s2c_attendance = value; }
  414. }
  415. private global::ProtoBuf.IExtension extensionObject;
  416. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  417. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  418. }
  419. //---------------------------------------------------------------------------------------
  420. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LuxuryRewardPush")]
  421. public partial class LuxuryRewardPush : global::ProtoBuf.IExtensible
  422. {
  423. public LuxuryRewardPush() {}
  424. private int _s2c_code;
  425. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  426. public int s2c_code
  427. {
  428. get { return _s2c_code; }
  429. set { _s2c_code = value; }
  430. }
  431. private string _s2c_msg = "";
  432. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  433. [global::System.ComponentModel.DefaultValue("")]
  434. public string s2c_msg
  435. {
  436. get { return _s2c_msg; }
  437. set { _s2c_msg = value; }
  438. }
  439. private pomelo.area.LuxuryInfo _s2c_luxury = null;
  440. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_luxury", DataFormat = global::ProtoBuf.DataFormat.Default)]
  441. [global::System.ComponentModel.DefaultValue(null)]
  442. public pomelo.area.LuxuryInfo s2c_luxury
  443. {
  444. get { return _s2c_luxury; }
  445. set { _s2c_luxury = value; }
  446. }
  447. private global::ProtoBuf.IExtension extensionObject;
  448. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  449. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  450. }
  451. }