_guildExtHandler.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  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-26
  12. // * 用途= 公会处理器
  13. // ***************************************************************************
  14. // Generated from: guildExtHandler.proto
  15. namespace pomelo.area
  16. {
  17. //---------------------------------------------------------------------------------------
  18. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetGuildRecordRequest")]
  19. public partial class GetGuildRecordRequest : global::ProtoBuf.IExtensible
  20. {
  21. public GetGuildRecordRequest() {}
  22. private int _page = default(int);
  23. /// <summary>
  24. /// 页数
  25. /// </summary>
  26. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"page", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  27. [global::System.ComponentModel.DefaultValue(default(int))]
  28. public int page
  29. {
  30. get { return _page; }
  31. set { _page = value; }
  32. }
  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=@"ImpeachGuildPresidentRequest")]
  39. public partial class ImpeachGuildPresidentRequest : global::ProtoBuf.IExtensible
  40. {
  41. public ImpeachGuildPresidentRequest() {}
  42. private global::ProtoBuf.IExtension extensionObject;
  43. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  44. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  45. }
  46. //---------------------------------------------------------------------------------------
  47. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetGuildMoneyRequest")]
  48. public partial class GetGuildMoneyRequest : global::ProtoBuf.IExtensible
  49. {
  50. public GetGuildMoneyRequest() {}
  51. private global::ProtoBuf.IExtension extensionObject;
  52. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  53. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  54. }
  55. //---------------------------------------------------------------------------------------
  56. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RoleInfo")]
  57. public partial class RoleInfo : global::ProtoBuf.IExtensible
  58. {
  59. public RoleInfo() {}
  60. private int _pro = default(int);
  61. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  62. [global::System.ComponentModel.DefaultValue(default(int))]
  63. public int pro
  64. {
  65. get { return _pro; }
  66. set { _pro = value; }
  67. }
  68. private string _name = "";
  69. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  70. [global::System.ComponentModel.DefaultValue("")]
  71. public string name
  72. {
  73. get { return _name; }
  74. set { _name = value; }
  75. }
  76. private global::ProtoBuf.IExtension extensionObject;
  77. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  78. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  79. }
  80. //---------------------------------------------------------------------------------------
  81. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RecordInfo")]
  82. public partial class RecordInfo : global::ProtoBuf.IExtensible
  83. {
  84. public RecordInfo() {}
  85. private pomelo.area.RoleInfo _role1 = null;
  86. /// <summary>
  87. /// 主动角色1
  88. /// </summary>
  89. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"role1", DataFormat = global::ProtoBuf.DataFormat.Default)]
  90. [global::System.ComponentModel.DefaultValue(null)]
  91. public pomelo.area.RoleInfo role1
  92. {
  93. get { return _role1; }
  94. set { _role1 = value; }
  95. }
  96. private pomelo.area.RoleInfo _role2 = null;
  97. /// <summary>
  98. /// 被动角色2
  99. /// </summary>
  100. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"role2", DataFormat = global::ProtoBuf.DataFormat.Default)]
  101. [global::System.ComponentModel.DefaultValue(null)]
  102. public pomelo.area.RoleInfo role2
  103. {
  104. get { return _role2; }
  105. set { _role2 = value; }
  106. }
  107. private int _resultNum = default(int);
  108. /// <summary>
  109. /// 结果值
  110. /// </summary>
  111. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"resultNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  112. [global::System.ComponentModel.DefaultValue(default(int))]
  113. public int resultNum
  114. {
  115. get { return _resultNum; }
  116. set { _resultNum = value; }
  117. }
  118. private string _resultStr = "";
  119. /// <summary>
  120. /// 结果字符串
  121. /// </summary>
  122. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"resultStr", DataFormat = global::ProtoBuf.DataFormat.Default)]
  123. [global::System.ComponentModel.DefaultValue("")]
  124. public string resultStr
  125. {
  126. get { return _resultStr; }
  127. set { _resultStr = value; }
  128. }
  129. private string _time = "";
  130. /// <summary>
  131. /// 时间
  132. /// </summary>
  133. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"time", DataFormat = global::ProtoBuf.DataFormat.Default)]
  134. [global::System.ComponentModel.DefaultValue("")]
  135. public string time
  136. {
  137. get { return _time; }
  138. set { _time = value; }
  139. }
  140. private int _recordType = default(int);
  141. /// <summary>
  142. /// 动态类型
  143. /// </summary>
  144. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"recordType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  145. [global::System.ComponentModel.DefaultValue(default(int))]
  146. public int recordType
  147. {
  148. get { return _recordType; }
  149. set { _recordType = value; }
  150. }
  151. private string _build = "";
  152. /// <summary>
  153. /// 建筑名称
  154. /// </summary>
  155. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"build", DataFormat = global::ProtoBuf.DataFormat.Default)]
  156. [global::System.ComponentModel.DefaultValue("")]
  157. public string build
  158. {
  159. get { return _build; }
  160. set { _build = value; }
  161. }
  162. private global::ProtoBuf.IExtension extensionObject;
  163. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  164. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  165. }
  166. //---------------------------------------------------------------------------------------
  167. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetGuildRecordResponse")]
  168. public partial class GetGuildRecordResponse : global::ProtoBuf.IExtensible
  169. {
  170. public GetGuildRecordResponse() {}
  171. private int _s2c_code;
  172. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  173. public int s2c_code
  174. {
  175. get { return _s2c_code; }
  176. set { _s2c_code = value; }
  177. }
  178. private string _s2c_msg = "";
  179. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  180. [global::System.ComponentModel.DefaultValue("")]
  181. public string s2c_msg
  182. {
  183. get { return _s2c_msg; }
  184. set { _s2c_msg = value; }
  185. }
  186. private int _s2c_page = default(int);
  187. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_page", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  188. [global::System.ComponentModel.DefaultValue(default(int))]
  189. public int s2c_page
  190. {
  191. get { return _s2c_page; }
  192. set { _s2c_page = value; }
  193. }
  194. private readonly global::System.Collections.Generic.List<pomelo.area.RecordInfo> _s2c_recordList = new global::System.Collections.Generic.List<pomelo.area.RecordInfo>();
  195. [global::ProtoBuf.ProtoMember(4, Name=@"s2c_recordList", DataFormat = global::ProtoBuf.DataFormat.Default)]
  196. public global::System.Collections.Generic.List<pomelo.area.RecordInfo> s2c_recordList
  197. {
  198. get { return _s2c_recordList; }
  199. }
  200. private global::ProtoBuf.IExtension extensionObject;
  201. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  202. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  203. }
  204. //---------------------------------------------------------------------------------------
  205. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ImpeachGuildPresidentResponse")]
  206. public partial class ImpeachGuildPresidentResponse : global::ProtoBuf.IExtensible
  207. {
  208. public ImpeachGuildPresidentResponse() {}
  209. private int _s2c_code;
  210. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  211. public int s2c_code
  212. {
  213. get { return _s2c_code; }
  214. set { _s2c_code = value; }
  215. }
  216. private string _s2c_msg = "";
  217. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  218. [global::System.ComponentModel.DefaultValue("")]
  219. public string s2c_msg
  220. {
  221. get { return _s2c_msg; }
  222. set { _s2c_msg = value; }
  223. }
  224. private int _isNew = default(int);
  225. /// <summary>
  226. /// 如果成功,是否是发起人,0:投票人 1:发起人
  227. /// </summary>
  228. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"isNew", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  229. [global::System.ComponentModel.DefaultValue(default(int))]
  230. public int isNew
  231. {
  232. get { return _isNew; }
  233. set { _isNew = value; }
  234. }
  235. private global::ProtoBuf.IExtension extensionObject;
  236. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  237. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  238. }
  239. //---------------------------------------------------------------------------------------
  240. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetGuildMoneyResponse")]
  241. public partial class GetGuildMoneyResponse : global::ProtoBuf.IExtensible
  242. {
  243. public GetGuildMoneyResponse() {}
  244. private int _s2c_code;
  245. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  246. public int s2c_code
  247. {
  248. get { return _s2c_code; }
  249. set { _s2c_code = value; }
  250. }
  251. private string _s2c_msg = "";
  252. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  253. [global::System.ComponentModel.DefaultValue("")]
  254. public string s2c_msg
  255. {
  256. get { return _s2c_msg; }
  257. set { _s2c_msg = value; }
  258. }
  259. private int _depositCount = default(int);
  260. /// <summary>
  261. /// 存入次数
  262. /// </summary>
  263. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"depositCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  264. [global::System.ComponentModel.DefaultValue(default(int))]
  265. public int depositCount
  266. {
  267. get { return _depositCount; }
  268. set { _depositCount = value; }
  269. }
  270. private int _depositCountMax = default(int);
  271. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"depositCountMax", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  272. [global::System.ComponentModel.DefaultValue(default(int))]
  273. public int depositCountMax
  274. {
  275. get { return _depositCountMax; }
  276. set { _depositCountMax = value; }
  277. }
  278. private global::ProtoBuf.IExtension extensionObject;
  279. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  280. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  281. }
  282. //---------------------------------------------------------------------------------------
  283. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"JoinGuildDungeonRequest")]
  284. public partial class JoinGuildDungeonRequest : global::ProtoBuf.IExtensible
  285. {
  286. public JoinGuildDungeonRequest() {}
  287. private int _c2s_type;
  288. /// <summary>
  289. /// 1:重试,0:不重试
  290. /// </summary>
  291. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  292. public int c2s_type
  293. {
  294. get { return _c2s_type; }
  295. set { _c2s_type = value; }
  296. }
  297. private global::ProtoBuf.IExtension extensionObject;
  298. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  299. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  300. }
  301. //---------------------------------------------------------------------------------------
  302. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"JoinGuildDungeonResponse")]
  303. public partial class JoinGuildDungeonResponse : global::ProtoBuf.IExtensible
  304. {
  305. public JoinGuildDungeonResponse() {}
  306. private int _s2c_code;
  307. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  308. public int s2c_code
  309. {
  310. get { return _s2c_code; }
  311. set { _s2c_code = value; }
  312. }
  313. private string _s2c_msg = "";
  314. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  315. [global::System.ComponentModel.DefaultValue("")]
  316. public string s2c_msg
  317. {
  318. get { return _s2c_msg; }
  319. set { _s2c_msg = value; }
  320. }
  321. private int _s2c_type = default(int);
  322. /// <summary>
  323. /// 1:重试,0:不重试
  324. /// </summary>
  325. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  326. [global::System.ComponentModel.DefaultValue(default(int))]
  327. public int s2c_type
  328. {
  329. get { return _s2c_type; }
  330. set { _s2c_type = value; }
  331. }
  332. private global::ProtoBuf.IExtension extensionObject;
  333. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  334. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  335. }
  336. //---------------------------------------------------------------------------------------
  337. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LeaveGuildDungeonRequest")]
  338. public partial class LeaveGuildDungeonRequest : global::ProtoBuf.IExtensible
  339. {
  340. public LeaveGuildDungeonRequest() {}
  341. private global::ProtoBuf.IExtension extensionObject;
  342. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  343. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  344. }
  345. //---------------------------------------------------------------------------------------
  346. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LeaveGuildDungeonResponse")]
  347. public partial class LeaveGuildDungeonResponse : global::ProtoBuf.IExtensible
  348. {
  349. public LeaveGuildDungeonResponse() {}
  350. private int _s2c_code;
  351. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  352. public int s2c_code
  353. {
  354. get { return _s2c_code; }
  355. set { _s2c_code = value; }
  356. }
  357. private string _s2c_msg = "";
  358. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
  359. [global::System.ComponentModel.DefaultValue("")]
  360. public string s2c_msg
  361. {
  362. get { return _s2c_msg; }
  363. set { _s2c_msg = value; }
  364. }
  365. private global::ProtoBuf.IExtension extensionObject;
  366. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  367. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  368. }
  369. }