using FreeSql.DataAnnotations; namespace Admin.Core.Model { /// /// 实体软删除 /// public class EntitySoftDelete : Entity,IEntitySoftDelete { /// /// 是否删除 /// [Column(Position = -1)] public bool IsDeleted { get; set; } = false; } public class EntitySoftDelete : EntitySoftDelete { } }