using GFGGame; using System; namespace ET { /// /// 改名日志 /// public class ModifyRoleNameFlow : SingletonBase, ILogBase { /// /// 平台ID /// public int PlatFormId = 1; /// /// 渠道ID /// public int ChannelId = 1; /// /// 服务器ID /// public int ServerId = 0; /// /// 操作编号 /// public string EventId = GenerateIDUtil.GenerateId(); /// /// 记录时间 /// public long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE); /// /// 玩家id /// public long PlayerId = 0; /// /// 玩家名 /// public string PlayerName = ""; /// /// 账户id /// public long AccountId = 0; } }