using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UIStandardWebApi.Entity { /// /// 公共基础类 /// public abstract class Sys_BaseModel { /// /// 创建时间 /// public DateTime CreateTime { get; set; } = DateTime.Now; /// /// 修改时间 /// [SugarColumn(IsNullable = true)] public DateTime? ModifyTime { get; set; } /// ///状态 /// public int Status { set; get; } } }