namespace Bunny.Dao.Entity.Base; public class BaseEntity { public string? Id { get; set; } public DateTime CreateTime { get; set; } public DateTime UpdateTime { get; set; } public long CreateUserId { get; set; } public long UpdateUserId { get; set; } public string? OperationMessage { get; set; } public bool IsDeleted { get; set; } }