using GFGGame;
using System;
namespace ET
{
///
/// 养成流水
///
public class FosterFlow : SingletonBase, ILogBase
{
///
/// 卡牌id
///
public int CardId = 0;
///
/// 卡牌名称
///
public string CardName = "";
///
/// 渠道ID
///
public int ChannelId = 1;
///
/// 当前等级
///
public int CurLevel = 0;
///
/// 当前星级
///
public int CurStar = 0;
///
/// 记录时间
///
public long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE);
///
/// 操作编号
///
public string EventId = GenerateIDUtil.GenerateId();
///
/// 操作类型 0词牌升级 1词牌升星 2技能升级
///
public int OpeType = 0;
///
/// 平台ID
///
public int PlatFormId = 1;
///
/// 玩家id
///
public long PlayerId = 0;
///
/// 玩家名
///
public string PlayerName = "";
///
/// 服务器ID
///
public int ServerId = 0;
///
/// 当前技能等级情况:技能id1:2级;技能id2:3级
///
public string SkillDes = "";
}
}