EntitySoftDelete.cs 517 B

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