Update Demo

This commit is contained in:
sunkaixuan
2019-01-15 22:19:24 +08:00
parent 3ef733f4fc
commit b532df18f2
10 changed files with 526 additions and 0 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; }
}
}