//------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
// ***************************************************************************
// * 作者= 周明凯
// * 创建时间= 2017-12-14
// * 用途= 冲榜处理器
// ***************************************************************************/
// Generated from: activityRevelryHandler.proto
// Note: requires additional types generated from: common.proto
namespace pomelo.revelry
{
//---------------------------------------------------------------------------------------
///
/// 每一天中的小栏目
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RevelryColumnInfo")]
public partial class RevelryColumnInfo : global::ProtoBuf.IExtensible
{
public RevelryColumnInfo() {}
private string _id;
///
/// 编号,用这个编号来取对应的排行数据
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string id
{
get { return _id; }
set { _id = value; }
}
private string _name;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string name
{
get { return _name; }
set { _name = value; }
}
private string _label;
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"label", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string label
{
get { return _label; }
set { _label = value; }
}
private string _goto1 = "";
///
/// 查看榜单
///
[global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"goto1", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string goto1
{
get { return _goto1; }
set { _goto1 = value; }
}
private string _goto2 = "";
///
/// 我要变强
///
[global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"goto2", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string goto2
{
get { return _goto2; }
set { _goto2 = value; }
}
private string _tip = "";
///
/// 提示
///
[global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"tip", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string tip
{
get { return _tip; }
set { _tip = 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=@"RevelryTodayInfo")]
public partial class RevelryTodayInfo : global::ProtoBuf.IExtensible
{
public RevelryTodayInfo() {}
private string _name;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string name
{
get { return _name; }
set { _name = value; }
}
private readonly global::System.Collections.Generic.List _column = new global::System.Collections.Generic.List();
[global::ProtoBuf.ProtoMember(2, Name=@"column", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List column
{
get { return _column; }
}
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=@"RevelryTabInfo")]
public partial class RevelryTabInfo : global::ProtoBuf.IExtensible
{
public RevelryTabInfo() {}
private string _name;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string name
{
get { return _name; }
set { _name = value; }
}
private readonly global::System.Collections.Generic.List _today = new global::System.Collections.Generic.List();
[global::ProtoBuf.ProtoMember(2, Name=@"today", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List today
{
get { return _today; }
}
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=@"KingExchange")]
public partial class KingExchange : global::ProtoBuf.IExtensible
{
public KingExchange() {}
private int _tabId;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"tabId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int tabId
{
get { return _tabId; }
set { _tabId = value; }
}
private string _tabName;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"tabName", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string tabName
{
get { return _tabName; }
set { _tabName = value; }
}
private string _item1code;
///
/// 兑换获得物品
///
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"item1code", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string item1code
{
get { return _item1code; }
set { _item1code = value; }
}
private int _item1num;
///
/// 兑换获得数量
///
[global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"item1num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int item1num
{
get { return _item1num; }
set { _item1num = value; }
}
private string _item2code;
///
/// 兑换消耗物品
///
[global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"item2code", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string item2code
{
get { return _item2code; }
set { _item2code = value; }
}
private int _item2num;
///
/// 兑换消耗数量
///
[global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"item2num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int item2num
{
get { return _item2num; }
set { _item2num = value; }
}
private string _avatarId;
///
/// 展示模型
///
[global::ProtoBuf.ProtoMember(7, IsRequired = true, Name=@"avatarId", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string avatarId
{
get { return _avatarId; }
set { _avatarId = value; }
}
private string _tip = "";
///
/// 提示
///
[global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"tip", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string tip
{
get { return _tip; }
set { _tip = value; }
}
private int _showType = default(int);
///
/// 显示类型
///
[global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"showType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int showType
{
get { return _showType; }
set { _showType = 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=@"RevelryGetColumnRequest")]
public partial class RevelryGetColumnRequest : global::ProtoBuf.IExtensible
{
public RevelryGetColumnRequest() {}
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=@"RevelryGetColumnResponse")]
public partial class RevelryGetColumnResponse : global::ProtoBuf.IExtensible
{
public RevelryGetColumnResponse() {}
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 _info = new global::System.Collections.Generic.List();
[global::ProtoBuf.ProtoMember(3, Name=@"info", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List info
{
get { return _info; }
}
private readonly global::System.Collections.Generic.List _exchange = new global::System.Collections.Generic.List();
///
/// 兑换展示(如果数组为空,则不显示)
///
[global::ProtoBuf.ProtoMember(4, Name=@"exchange", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List exchange
{
get { return _exchange; }
}
private int _selectedIndex = default(int);
///
/// 默认选中的info字段的下标,从0开始
///
[global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"selectedIndex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int selectedIndex
{
get { return _selectedIndex; }
set { _selectedIndex = 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=@"RevelryRankInfo")]
public partial class RevelryRankInfo : global::ProtoBuf.IExtensible
{
public RevelryRankInfo() {}
private readonly global::System.Collections.Generic.List _contents = new global::System.Collections.Generic.List();
///
/// 玩家或公会的信息数组
///
[global::ProtoBuf.ProtoMember(1, Name=@"contents", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List contents
{
get { return _contents; }
}
private readonly global::System.Collections.Generic.List _avatars = new global::System.Collections.Generic.List();
///
/// 只有第一名才有此属性
///
[global::ProtoBuf.ProtoMember(2, Name=@"avatars", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List 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); }
}
//---------------------------------------------------------------------------------------
///
/// 排行奖励信息
///
[global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RevelryAwardInfo")]
public partial class RevelryAwardInfo : global::ProtoBuf.IExtensible
{
public RevelryAwardInfo() {}
private string _itemcode;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"itemcode", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string itemcode
{
get { return _itemcode; }
set { _itemcode = value; }
}
private int _itemcount;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"itemcount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int itemcount
{
get { return _itemcount; }
set { _itemcount = 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=@"RevelryConfigInfo")]
public partial class RevelryConfigInfo : global::ProtoBuf.IExtensible
{
public RevelryConfigInfo() {}
private int _minRank;
///
/// 最小排名
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"minRank", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int minRank
{
get { return _minRank; }
set { _minRank = value; }
}
private int _maxRank;
///
/// 最大排名
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"maxRank", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int maxRank
{
get { return _maxRank; }
set { _maxRank = value; }
}
private readonly global::System.Collections.Generic.List _award = new global::System.Collections.Generic.List();
///
/// 奖励
///
[global::ProtoBuf.ProtoMember(3, Name=@"award", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List award
{
get { return _award; }
}
private pomelo.revelry.RevelryRankInfo _player = null;
///
/// 上榜玩家
///
[global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"player", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue(null)]
public pomelo.revelry.RevelryRankInfo player
{
get { return _player; }
set { _player = 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=@"RevelryGetRankInfoRequest")]
public partial class RevelryGetRankInfoRequest : global::ProtoBuf.IExtensible
{
public RevelryGetRankInfoRequest() {}
private string _id;
///
/// 编号
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string id
{
get { return _id; }
set { _id = 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=@"RevelryGetRankInfoResponse")]
public partial class RevelryGetRankInfoResponse : global::ProtoBuf.IExtensible
{
public RevelryGetRankInfoResponse() {}
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 int _rankKey;
///
/// 冲榜专用属性,用来标识是哪个排行榜
///
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"rankKey", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int rankKey
{
get { return _rankKey; }
set { _rankKey = value; }
}
private readonly global::System.Collections.Generic.List _config = new global::System.Collections.Generic.List();
[global::ProtoBuf.ProtoMember(4, Name=@"config", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List config
{
get { return _config; }
}
private pomelo.revelry.RevelryRankInfo _self = null;
///
/// 自己的信息
///
[global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"self", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue(null)]
public pomelo.revelry.RevelryRankInfo self
{
get { return _self; }
set { _self = value; }
}
private int _selfRank = default(int);
///
/// 自己的排名
///
[global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"selfRank", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int selfRank
{
get { return _selfRank; }
set { _selfRank = value; }
}
private string _title = "";
///
/// 第一名送的称号资源
///
[global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"title", DataFormat = global::ProtoBuf.DataFormat.Default)]
[global::System.ComponentModel.DefaultValue("")]
public string title
{
get { return _title; }
set { _title = value; }
}
private int _timeleft = default(int);
///
/// 剩余时间(单位:秒)
///
[global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"timeleft", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int timeleft
{
get { return _timeleft; }
set { _timeleft = 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=@"RevelryExchangeRequest")]
public partial class RevelryExchangeRequest : global::ProtoBuf.IExtensible
{
public RevelryExchangeRequest() {}
private int _id;
///
/// 兑换配置中的tabId
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int id
{
get { return _id; }
set { _id = value; }
}
private int _num;
///
/// 兑换数量
///
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int num
{
get { return _num; }
set { _num = 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=@"RevelryExchangeResponse")]
public partial class RevelryExchangeResponse : global::ProtoBuf.IExtensible
{
public RevelryExchangeResponse() {}
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 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=@"RevelryRechargeColumn")]
public partial class RevelryRechargeColumn : global::ProtoBuf.IExtensible
{
public RevelryRechargeColumn() {}
private int _day;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"day", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int day
{
get { return _day; }
set { _day = value; }
}
private string _name;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"name", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string name
{
get { return _name; }
set { _name = 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=@"RevelryRechargeGetColumnRequest")]
public partial class RevelryRechargeGetColumnRequest : global::ProtoBuf.IExtensible
{
public RevelryRechargeGetColumnRequest() {}
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=@"RevelryRechargeGetColumnResponse")]
public partial class RevelryRechargeGetColumnResponse : global::ProtoBuf.IExtensible
{
public RevelryRechargeGetColumnResponse() {}
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 string _beginTime;
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"beginTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string beginTime
{
get { return _beginTime; }
set { _beginTime = value; }
}
private string _endTime;
[global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"endTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string endTime
{
get { return _endTime; }
set { _endTime = value; }
}
private string _describe;
[global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"describe", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string describe
{
get { return _describe; }
set { _describe = value; }
}
private int _today = default(int);
///
/// 今天第几天
///
[global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"today", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
[global::System.ComponentModel.DefaultValue(default(int))]
public int today
{
get { return _today; }
set { _today = value; }
}
private readonly global::System.Collections.Generic.List _column = new global::System.Collections.Generic.List();
[global::ProtoBuf.ProtoMember(7, Name=@"column", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List column
{
get { return _column; }
}
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=@"RevelryRechargeItem")]
public partial class RevelryRechargeItem : global::ProtoBuf.IExtensible
{
public RevelryRechargeItem() {}
private string _code;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"code", DataFormat = global::ProtoBuf.DataFormat.Default)]
public string code
{
get { return _code; }
set { _code = value; }
}
private int _groupCount;
[global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"groupCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int groupCount
{
get { return _groupCount; }
set { _groupCount = 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=@"RevelryRechargeAwardInfo")]
public partial class RevelryRechargeAwardInfo : global::ProtoBuf.IExtensible
{
public RevelryRechargeAwardInfo() {}
private int _id;
///
/// 领取奖励的唯一编号
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int id
{
get { return _id; }
set { _id = value; }
}
private readonly global::System.Collections.Generic.List _item = new global::System.Collections.Generic.List();
[global::ProtoBuf.ProtoMember(2, Name=@"item", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List item
{
get { return _item; }
}
private int _state;
///
/// 0未领取 1可领取 2已领取
///
[global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"state", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int state
{
get { return _state; }
set { _state = value; }
}
private int _currNum;
///
/// 当前进度
///
[global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"currNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int currNum
{
get { return _currNum; }
set { _currNum = value; }
}
private int _needNum;
///
/// 总进度
///
[global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"needNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int needNum
{
get { return _needNum; }
set { _needNum = 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=@"RevelryRechargeGetInfoRequest")]
public partial class RevelryRechargeGetInfoRequest : global::ProtoBuf.IExtensible
{
public RevelryRechargeGetInfoRequest() {}
private int _day;
///
/// 天数
///
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"day", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int day
{
get { return _day; }
set { _day = 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=@"RevelryRechargeGetInfoResponse")]
public partial class RevelryRechargeGetInfoResponse : global::ProtoBuf.IExtensible
{
public RevelryRechargeGetInfoResponse() {}
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 _info = new global::System.Collections.Generic.List();
[global::ProtoBuf.ProtoMember(3, Name=@"info", DataFormat = global::ProtoBuf.DataFormat.Default)]
public global::System.Collections.Generic.List info
{
get { return _info; }
}
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=@"RevelryRechargeAwardRequest")]
public partial class RevelryRechargeAwardRequest : global::ProtoBuf.IExtensible
{
public RevelryRechargeAwardRequest() {}
private int _id;
[global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
public int id
{
get { return _id; }
set { _id = 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=@"RevelryRechargeAwardResponse")]
public partial class RevelryRechargeAwardResponse : global::ProtoBuf.IExtensible
{
public RevelryRechargeAwardResponse() {}
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 global::ProtoBuf.IExtension extensionObject;
global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
{ return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
}
}