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

14 lines
362 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 IsDelete { get; set; }