using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreCms.Net.Model.Entities.baseModel { /// /// 百分兵法新增数据库基础模型 /// public class BFBaseModel { /// /// 建立时间 /// [SugarColumn(ColumnDescription = "建立时间" ,IsNullable =true)] public DateTime? createTime { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnDescription = "修改时间", IsNullable = true)] public DateTime? upDataTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnDescription = "创建人", IsNullable = true)] public string createBy { get; set; } /// /// 修改人 /// [SugarColumn(ColumnDescription = "修改人", IsNullable = true)] public string upDataBy { get; set; } /// /// 删除标志 /// [SugarColumn(ColumnDescription = "删除标志")] public bool isdelete { get; set; }= false; } }