using GFGGame; using System; namespace ET { /// /// 寻奇访胜流水 /// public class TravelGuideFlow : SingletonBase, ILogBase { /// /// 平台ID /// public int PlatFormId = 1; /// /// 渠道ID /// public int ChannelId = 1; /// /// 服务器ID /// public int ServerId = 0; /// /// 记录时间 /// public long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE); /// /// 操作编号 /// public string EventId = GenerateIDUtil.GenerateId(); /// /// 账号Id /// public long AccountId = 0; /// /// 玩家id /// public long PlayerId = 0; /// /// 玩家名 /// public string PlayerName = ""; /// /// 地点id /// public int LocationId = 0; /// /// 游历该地点的次数 /// public int TravelGuideLocationCount = 0; /// /// 特殊奖励获得次数 /// public int SpecialRewardCount = 0; } }