using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Face.Domain.Application.FaceAll { /// /// 测试用户表 /// public class TestUser { /// /// id /// [SugarColumn(IsIdentity = true, IsPrimaryKey = true)] public int id { get; set; } /// /// 测试名字 /// [SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)] public string name { get; set; } /// /// 性别 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable sex { get; set; } /// /// 电话 /// [SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)] public string phone { get; set; } /// /// 身份证 /// [SugarColumn(ColumnDataType = "varchar(100)", IsNullable = true)] public string idNumber { get; set; } /// /// 图片 /// [SugarColumn(ColumnDataType = "varchar(200)", IsNullable = true)] public string picture { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDataType = "datetime", IsNullable = true)] public Nullable creationTime { get; set; } /// /// 状态 0是冻结 1是正常 /// [SugarColumn(ColumnDataType = "int", IsNullable = true)] public Nullable state { get; set; } /// /// 创建人 /// [SugarColumn(ColumnDataType = "varchar(50)", IsNullable = true)] public string establish { get; set; } } }