first commit
This commit is contained in:
12
Complex.Domain/Commons/BaseEntityNotId.cs
Normal file
12
Complex.Domain/Commons/BaseEntityNotId.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Complex.Domain.Commons
|
||||
{
|
||||
public abstract class BaseEntityNotId
|
||||
{
|
||||
public DateTime InsertTime { get; set; } = DateTime.Now;
|
||||
public DateTime? UpdateTime { get; set; }
|
||||
public bool IsRemoved { get; set; } = false;
|
||||
public DateTime? RemoveTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user