using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Yi.Framework.Model.Models { /// /// /// [SugarTable("User")] public partial class UserEntity:BaseModelEntity { /// /// /// [SugarColumn(ColumnName="Name" )] public string Name { get; set; } /// /// /// [SugarColumn(ColumnName="Age" )] public int? Age { get; set; } /// /// /// [SugarColumn(ColumnName="TenantId" )] public long? TenantId { get; set; } /// /// /// [SugarColumn(ColumnName="UserName" )] public string UserName { get; set; } /// /// /// [SugarColumn(ColumnName="Password" )] public string Password { get; set; } /// /// /// [SugarColumn(ColumnName="Salt" )] public string Salt { get; set; } } }