16 lines
411 B
C#
16 lines
411 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using JiShe.CollectBus.EntityFrameworkCore.Entities;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.EntityFrameworkCore.AuditLogs
|
|||
|
|
{
|
|||
|
|
public class AuditLog : EntityBase<Guid>,ICreationAudited<long?>
|
|||
|
|
{
|
|||
|
|
public long? CreatorId { get; set; }
|
|||
|
|
public DateTime CreationTime { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|