using Dapper; using Dapper.Contrib; using Dapper.Contrib.Extensions; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NFine.Application.Entity { /// /// 操作日志 /// [Table("SysModifyLog")] public class SysModifyLog { /// /// 非自增主键 /// [Key] public string ID { get; set; } /// /// 租户ID /// public string TenantId { get; set; } /// /// 表单编号 /// public string BillCode { get; set; } /// /// 表单类型 /// public string BillType { get; set; } /// /// 来源类型 /// public string SourceType { get; set; } /// /// 变更类型 /// public string ModifyType { get; set; } /// /// 实体名称 /// public string EntityName { get; set; } /// /// 数据 /// public string JsonData { get; set; } public DateTime CreationTime { get; set; } public string CreatorUserId { get; set; } public string CreatorUserName { get; set; } public DateTime? LastModificationTime { get; set; } public string LastModifierUserId { get; set; } public string LastModifierUserName { get; set; } } }