Update Demo

This commit is contained in:
sunkaixuan
2019-05-05 14:28:54 +08:00
parent f69f8af8d9
commit 53e9453168
78 changed files with 138 additions and 120 deletions

View File

@@ -0,0 +1,65 @@
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
{
/// <summary>
///
/// </summary>
public LevelSettingModel()
{
}
/// <summary>
///
/// </summary>
public System.Int32 UserLevel { get; set; }
/// <summary>
///
/// </summary>
public System.Decimal MinExperiencePoints { get; set; }
/// <summary>
///
/// </summary>
public System.Decimal MaxExperiencePoints { get; set; }
/// <summary>
///
/// </summary>
public System.String UnlockAppModules { get; set; }
/// <summary>
///
/// </summary>
public System.Int32 RouletteLevel { get; set; }
/// <summary>
///
/// </summary>
public System.String LevelUpRemindTitle { get; set; }
/// <summary>
///
/// </summary>
public System.String LevelUpRemindSubTitle { get; set; }
/// <summary>
///
/// </summary>
public System.String LevelUpRemindDescription { get; set; }
/// <summary>
///
/// </summary>
public System.Int32 FortuneRouletteLevel { get; set; }
}
}