using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TCM.Manager.Models
{
[SugarTable("LevelSetting")]
public class LevelSettingModel
{
///
///
///
public LevelSettingModel()
{
}
///
///
///
public System.Int32 UserLevel { get; set; }
///
///
///
public System.Decimal MinExperiencePoints { get; set; }
///
///
///
public System.Decimal MaxExperiencePoints { get; set; }
///
///
///
public System.String UnlockAppModules { get; set; }
///
///
///
public System.Int32 RouletteLevel { get; set; }
///
///
///
public System.String LevelUpRemindTitle { get; set; }
///
///
///
public System.String LevelUpRemindSubTitle { get; set; }
///
///
///
public System.String LevelUpRemindDescription { get; set; }
///
///
///
public System.Int32 FortuneRouletteLevel { get; set; }
}
}