using GFGGame; using System; namespace ET { /// /// 雅集聊天日志 /// public class LeagueChatFlow : SingletonBase, ILogBase { /// /// 玩家id /// public long PlayerId = 0; /// /// 玩家名 /// public string PlayerName = ""; /// /// 账户id /// public long AccountId = 0; /// /// 账号名 /// public string Account = ""; /// /// 渠道ID /// public int ChannelId = 1; /// /// 记录时间 /// public long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE); /// /// 操作编号 /// public string EventId = GenerateIDUtil.GenerateId(); /// /// 平台ID /// public int PlatFormId = 1; /// /// 服务器ID /// public int ServerId = 0; /// /// 聊天频道 /// public int ChatType = 0; /// /// 雅集职位 /// public string Pos = ""; /// /// 聊天内容 /// public string ChatContent = ""; /// /// 联盟名称 /// public string LeagueName = ""; /// /// 联盟Id /// public long LeagueId = 0; } }