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; }
|
|
|
|
|
|
2024-08-30 16:08:08 +08:00
|
|
|
|
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; }
|
|
|
|
|
}
|