123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated by a tool.
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- // ***************************************************************************
- // * 作者= jjr
- // * 创建时间= 2017-03-27
- // * 用途= 排行榜
- // ***************************************************************************/
- // Generated from: leaderBoardHandler.proto
- // Note: requires additional types generated from: common.proto
- namespace pomelo.area
- {
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LeaderBoardData")]
- public partial class LeaderBoardData : global::ProtoBuf.IExtensible
- {
- public LeaderBoardData() {}
-
-
- private readonly global::System.Collections.Generic.List<string> _contents = new global::System.Collections.Generic.List<string>();
- /// <summary>
- /// 客户端显示字段需和客户端相对应,约定数组第一个传rank排名
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, Name=@"contents", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<string> contents
- {
- get { return _contents; }
- }
-
-
- private readonly global::System.Collections.Generic.List<pomelo.Avatar> _avatars = new global::System.Collections.Generic.List<pomelo.Avatar>();
- /// <summary>
- /// 人物avatar 除公会,宠物,坐骑都有 本人排名信息没有
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, Name=@"avatars", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.Avatar> avatars
- {
- get { return _avatars; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 排行榜公会信息结构
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RankGuildInfo")]
- public partial class RankGuildInfo : global::ProtoBuf.IExtensible
- {
- public RankGuildInfo() {}
-
-
- private string _guildId = "";
- [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"guildId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string guildId
- {
- get { return _guildId; }
- set { _guildId = value; }
- }
-
- private string _guildIcon = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"guildIcon", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string guildIcon
- {
- get { return _guildIcon; }
- set { _guildIcon = value; }
- }
-
- private string _guildMaster = "";
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"guildMaster", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string guildMaster
- {
- get { return _guildMaster; }
- set { _guildMaster = value; }
- }
-
- private int _guildLevel = default(int);
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"guildLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int guildLevel
- {
- get { return _guildLevel; }
- set { _guildLevel = value; }
- }
-
- private int _curMember = default(int);
- [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"curMember", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int curMember
- {
- get { return _curMember; }
- set { _curMember = value; }
- }
-
- private int _maxMember = default(int);
- [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"maxMember", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int maxMember
- {
- get { return _maxMember; }
- set { _maxMember = value; }
- }
-
- private int _fund = default(int);
- [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"fund", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int fund
- {
- get { return _fund; }
- set { _fund = value; }
- }
-
- private string _notice = "";
- [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"notice", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string notice
- {
- get { return _notice; }
- set { _notice = value; }
- }
-
- private int _guildMasterPro = default(int);
- [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"guildMasterPro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int guildMasterPro
- {
- get { return _guildMasterPro; }
- set { _guildMasterPro = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取排行榜 (请求)
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LeaderBoardRequest")]
- public partial class LeaderBoardRequest : global::ProtoBuf.IExtensible
- {
- public LeaderBoardRequest() {}
-
-
- private int _c2s_kind;
- /// <summary>
- /// 排行榜类型
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_kind", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int c2s_kind
- {
- get { return _c2s_kind; }
- set { _c2s_kind = value; }
- }
-
- private int _c2s_season = default(int);
- /// <summary>
- /// 赛季类型 -1:没有赛季概念 0 上一赛季 1 当前赛季
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"c2s_season", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(int))]
- public int c2s_season
- {
- get { return _c2s_season; }
- set { _c2s_season = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取排行榜 (返回)
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"LeaderBoardResponse")]
- public partial class LeaderBoardResponse : global::ProtoBuf.IExtensible
- {
- public LeaderBoardResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.area.LeaderBoardData> _s2c_lists = new global::System.Collections.Generic.List<pomelo.area.LeaderBoardData>();
- [global::ProtoBuf.ProtoMember(3, Name=@"s2c_lists", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.area.LeaderBoardData> s2c_lists
- {
- get { return _s2c_lists; }
- }
-
-
- private pomelo.area.LeaderBoardData _s2c_myData = null;
- [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_myData", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(null)]
- public pomelo.area.LeaderBoardData s2c_myData
- {
- get { return _s2c_myData; }
- set { _s2c_myData = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取公会信息 (请求)
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildInfoRequest")]
- public partial class GuildInfoRequest : global::ProtoBuf.IExtensible
- {
- public GuildInfoRequest() {}
-
-
- private string _c2s_guildId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_guildId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string c2s_guildId
- {
- get { return _c2s_guildId; }
- set { _c2s_guildId = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- /// <summary>
- /// 获取公会信息 (返回)
- /// </summary>
-
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GuildInfoResponse")]
- public partial class GuildInfoResponse : global::ProtoBuf.IExtensible
- {
- public GuildInfoResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private pomelo.area.RankGuildInfo _s2c_data = null;
- [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue(null)]
- public pomelo.area.RankGuildInfo s2c_data
- {
- get { return _s2c_data; }
- set { _s2c_data = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"WorShipRequest")]
- public partial class WorShipRequest : global::ProtoBuf.IExtensible
- {
- public WorShipRequest() {}
-
-
- private int _c2s_type;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int c2s_type
- {
- get { return _c2s_type; }
- set { _c2s_type = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"WorShipResponse")]
- public partial class WorShipResponse : global::ProtoBuf.IExtensible
- {
- public WorShipResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private readonly global::System.Collections.Generic.List<string> _s2c_awards = new global::System.Collections.Generic.List<string>();
- [global::ProtoBuf.ProtoMember(3, Name=@"s2c_awards", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<string> s2c_awards
- {
- get { return _s2c_awards; }
- }
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"WorldLevelInfoRequest")]
- public partial class WorldLevelInfoRequest : global::ProtoBuf.IExtensible
- {
- public WorldLevelInfoRequest() {}
-
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"WorldLevelInfo")]
- public partial class WorldLevelInfo : global::ProtoBuf.IExtensible
- {
- public WorldLevelInfo() {}
-
-
- private string _worldLevelId;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"worldLevelId", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string worldLevelId
- {
- get { return _worldLevelId; }
- set { _worldLevelId = value; }
- }
-
- private string _worldLevelName;
- [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"worldLevelName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public string worldLevelName
- {
- get { return _worldLevelName; }
- set { _worldLevelName = value; }
- }
-
- private int _worldLevel;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"worldLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int worldLevel
- {
- get { return _worldLevel; }
- set { _worldLevel = value; }
- }
-
- private int _worldUpLevel;
- [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"worldUpLevel", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int worldUpLevel
- {
- get { return _worldUpLevel; }
- set { _worldUpLevel = value; }
- }
-
- private readonly global::System.Collections.Generic.List<pomelo.Avatar> _avatars = new global::System.Collections.Generic.List<pomelo.Avatar>();
- [global::ProtoBuf.ProtoMember(5, Name=@"avatars", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public global::System.Collections.Generic.List<pomelo.Avatar> avatars
- {
- get { return _avatars; }
- }
-
-
- private int _addExp;
- [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"addExp", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int addExp
- {
- get { return _addExp; }
- set { _addExp = value; }
- }
-
- private int _worShipTimes;
- [global::ProtoBuf.ProtoMember(7, IsRequired = true, Name=@"worShipTimes", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int worShipTimes
- {
- get { return _worShipTimes; }
- set { _worShipTimes = value; }
- }
-
- private int _maxWorShipTimes;
- [global::ProtoBuf.ProtoMember(8, IsRequired = true, Name=@"maxWorShipTimes", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int maxWorShipTimes
- {
- get { return _maxWorShipTimes; }
- set { _maxWorShipTimes = value; }
- }
-
- private int _worldLevelPro;
- [global::ProtoBuf.ProtoMember(9, IsRequired = true, Name=@"worldLevelPro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int worldLevelPro
- {
- get { return _worldLevelPro; }
- set { _worldLevelPro = value; }
- }
-
- private string _rank1stGuildName = "";
- /// <summary>
- /// 第一名玩家的公会名
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"rank1stGuildName", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string rank1stGuildName
- {
- get { return _rank1stGuildName; }
- set { _rank1stGuildName = value; }
- }
-
- private long _rank1stFight = default(long);
- /// <summary>
- /// 第一名玩家的战力
- /// </summary>
-
- [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"rank1stFight", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- [global::System.ComponentModel.DefaultValue(default(long))]
- public long rank1stFight
- {
- get { return _rank1stFight; }
- set { _rank1stFight = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- //---------------------------------------------------------------------------------------
- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"WorldLevelInfoResponse")]
- public partial class WorldLevelInfoResponse : global::ProtoBuf.IExtensible
- {
- public WorldLevelInfoResponse() {}
-
-
- private int _s2c_code;
- [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
- public int s2c_code
- {
- get { return _s2c_code; }
- set { _s2c_code = value; }
- }
-
- private string _s2c_msg = "";
- [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)]
- [global::System.ComponentModel.DefaultValue("")]
- public string s2c_msg
- {
- get { return _s2c_msg; }
- set { _s2c_msg = value; }
- }
-
- private pomelo.area.WorldLevelInfo _s2c_data;
- [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)]
- public pomelo.area.WorldLevelInfo s2c_data
- {
- get { return _s2c_data; }
- set { _s2c_data = value; }
- }
- private global::ProtoBuf.IExtension extensionObject;
- global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
- { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
- }
-
-
- }
-
|