using System; using System.Collections.Generic; namespace MySystem.KxsUserModels { public partial class UndoLog { public long BranchId { get; set; } public string Xid { get; set; } public string Context { get; set; } public byte[] RollbackInfo { get; set; } public int LogStatus { get; set; } public DateTime LogCreated { get; set; } public DateTime LogModified { get; set; } } }