using GFGGame;
using System;
namespace ET
{
///
/// 每日活跃--每达成一个阶段 就上报一次日志
///
public class DailyActivity : SingletonBase, ILogBase
{
///
/// 活跃宝箱id
///
public int BoxId = 0;
///
/// 渠道ID
///
public int ChannelId = 1;
///
/// 记录时间
///
public long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE);
///
/// 操作编号
///
public string EventId = GenerateIDUtil.GenerateId();
///
/// 平台ID
///
public int PlatFormId = 1;
///
/// 玩家id
///
public long PlayerId = 0;
///
/// 玩家名
///
public string PlayerName = "";
///
/// 服务器ID
///
public int ServerId = 0;
}
}