using GFGGame;
using System;
namespace ET
{
///
/// 关卡参与
///
public class LevelParticipation : SingletonBase, ILogBase
{
///
/// 渠道ID
///
public int ChannelId = 1;
///
/// 记录时间
///
public long DtEventTime = DateTimeUtil.GetNowTime(DateTimeUtil.FormatE);
///
/// 操作编号
///
public string EventId = GenerateIDUtil.GenerateId();
///
/// 结算类型 0:失败,1:胜利
///
public int EventStatus = 0;
///
/// 平台ID
///
public int PlatFormId = 1;
///
/// 玩家id
///
public long PlayerId = 0;
///
/// 玩家名
///
public string PlayerName = "";
///
/// 服务器ID
///
public int ServerId = 0;
///
/// 关卡id
///
public int StoryLevelId = 0;
///
/// 关卡名字
///
public string StoryLevelName = "";
///
/// 子类型,0普通,1精英$#0:普通,1:精英
///
public int SubType = 0;
///
/// 关卡类型 1主线 2工作室 3田野调查$#1:主线,2:工作室,3:田野调查
///
public int Type = 0;
}
}