You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CaiQie/DB/Entity/UpdateLog.cs

30 lines
695 B
C#

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