CSharp-Single-EFCore/Bunny.Dao/Entity/Base/BaseEntity.cs

18 lines
372 B
C#
Raw Normal View History

2024-08-08 22:23:36 +08:00
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; }
}