namespace DB.Entity { public class UpdateLog:BaseChimsDb { /// /// 旧的value /// public string OldValue { get; set; } /// /// 新的value /// public string NewValue { get; set; } /// /// 页面的Id /// public long FunctionId { get; set; } } public class UpdateMapper : SystemEntityTypeBuilder { public UpdateMapper() : base("UpdateLog") { this.Property(x => x.OldValue).HasSize(500); this.Property(x => x.NewValue).HasSize(500); } } }