using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace CMS.Plugin.HIAWms.Domain.Extension
|
{
|
public class AuditableEntity
|
{
|
public string CreatorId { get; set; }
|
public string CreatorName { get; set; }
|
public DateTime CreationTime { get; set; }
|
public string LastModifierName { get; set; }
|
public string LastModifierId { get; set; }
|
public DateTime? LastModificationTime { get; set; }
|
public bool IsDeleted { get; set; }
|
public string DeleterId { get; set; }
|
public DateTime? DeletionTime { get; set; }
|
public string ExtraProperties { get; set; }
|
public string ConcurrencyStamp { get; set; }
|
public int Sort { get; set; }
|
public string Remark { get; set; }
|
public bool IsDisabled { get; set; }
|
}
|
}
|