using GFGGame; using System; namespace ET { /// /// 临时返利抽奖日志 /// public class TempLuckBoxRebate : SingletonBase, ILogBase { /// /// 平台ID /// public int PlatFormId = 1; /// /// 渠道ID /// public int ChannelId = 1; /// /// 服务器ID /// public int ServerId = 0; /// /// 玩家id /// public long PlayerId = 0; /// /// 玩家名 /// public string PlayerName = ""; /// /// 账户id /// public long AccountId = 0; /// /// 账号名 /// public string Account = ""; /// /// 记录时间 /// public long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE); /// /// 操作编号 /// public string EventId = GenerateIDUtil.GenerateId(); /// /// 奖池2抽奖次数 /// public long CurLuckyBoxNumA = 0; /// /// 奖池5抽奖次数 /// public long CurLuckyBoxNumB = 0; /// /// 双奖池抽奖次数 /// public long CurLuckyBoxNumATotal = 0; /// /// 发出去的抽数 /// public int CurRebateItemNum = 0; /// /// 是否成功发送 /// public int IsSendMail = 0; } }