namespace Admin.Core.Common.BaseModel { public interface IEntitySoftDelete { /// /// 是否删除 /// bool IsDeleted { get; set; } } }