using GFGGame;
using System;
namespace ET
{
///
/// 引导原始日志
///
public class GuideFlow : 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 PlayerId = 0;
///
/// 玩家名
///
public string PlayerName = "";
///
/// 引导id -> GuideId*100+1 OR GuideId*100+2
///
public int GuideId = 0;
}
}