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; }
///
/// 租户Id
///
[SugarColumn(ColumnName="TenantId" )]
public Guid? 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; }
}
}