EntitySoftDelete.cs 439 B

1234567891011121314151617181920
  1. using FreeSql.DataAnnotations;
  2. namespace Admin.Core.Model
  3. {
  4. /// <summary>
  5. /// 实体软删除
  6. /// </summary>
  7. public class EntitySoftDelete<TKey> : Entity<TKey>,IEntitySoftDelete
  8. {
  9. /// <summary>
  10. /// 是否删除
  11. /// </summary>
  12. [Column(Position = -1)]
  13. public bool IsDeleted { get; set; } = false;
  14. }
  15. public class EntitySoftDelete : EntitySoftDelete<long>
  16. {
  17. }
  18. }