You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
863 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace Infrastructure;
/// <summary>
/// 实体类软删除接口用于filter
/// </summary>
public interface IDeletable
{
bool IsDeleted { get; set; }
}
public interface IPrimaryKey<T> where T : IEquatable<T>
{
public T Id { get; set; }
}
public interface IEntityBase<T> : IPrimaryKey<T>, IDeletable where T : IEquatable<T>
{
public DateTime CreatedDate { get; set; }
public DateTime? UpdatedDate { get; set; }
public string? Name { get; set; }
public T CreatorId { get; set; }
}
public abstract class EntityBase<T> : IEntityBase<T> where T : class, IEquatable<T>
{
public bool IsDeleted { get; set; }
public T Id { get; set; }
public DateTime CreatedDate { get; set; }
public string? Name { get; set; }
public DateTime? UpdatedDate { get; set; }
public T CreatorId { get; set; }
}