using GFGGame; using System; namespace ET { /// /// 订单商品成功到账户流水 /// public class PayToAccountFlow : 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 long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE); /// /// 操作编号 /// public string EventId = GenerateIDUtil.GenerateId(); /// /// 游戏订单号 /// public long GameOrderId = 0; /// /// 商品 ID /// public int ShopId = 0; /// /// 订单金额,单位为分 /// public long Price = 0; } }