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,ICreationAudited { public long? CreatorId { get; set; } public DateTime CreationTime { get; set; } } }