using GFGGame;
using System;
namespace ET
{
///
/// 活跃度统计
///
public class LivenCountFlow : SingletonBase, ILogBase
{
///
/// 渠道ID
///
public int ChannelId = 1;
///
/// 记录时间
///
public long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE);
///
/// 操作编号
///
public string EventId = GenerateIDUtil.GenerateId();
///
/// 登录ip
///
public string Ip = "";
///
/// 是否老用户$#0:老用户,1:新用户
///
public int IsOld = 0;
///
/// 平台ID
///
public int PlatFormId = 1;
///
/// 玩家id
///
public long PlayerId = 0;
///
/// 玩家名
///
public string PlayerName = "";
///
/// 服务器ID
///
public int ServerId = 0;
///
/// 账户id
///
public long AccountId = 0;
}
}