2024-10-22 14:59:19 +08:00

17 lines
436 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 string Re
public long? CreatorId { get; set; }
public DateTime CreationTime { get; set; }
}
}