optimize
wet 2 years ago
parent cdbfa0d677
commit 6040a49eb0

@ -1748,7 +1748,7 @@ namespace Myshipping.Application
}); });
it.ATD = item.ATD; it.ATD = item.ATD;
} }
if (item.ATA != it.StartATA) if (it.StartATA != item.ATA)
{ {
////添加booking日志 ////添加booking日志
var bid = await _bookinglog.InsertReturnSnowflakeIdAsync(new BookingLog var bid = await _bookinglog.InsertReturnSnowflakeIdAsync(new BookingLog
@ -1767,7 +1767,7 @@ namespace Myshipping.Application
OldValue = it.StartATA == null ? "" : it.StartATA.ToString(), OldValue = it.StartATA == null ? "" : it.StartATA.ToString(),
NewValue = item.ATA == null ? "" : item.ATA.ToString(), NewValue = item.ATA == null ? "" : item.ATA.ToString(),
}); });
it.StartATA = item.ATD; it.StartATA = item.ATA;
} }
await _rep.AsUpdateable(it).IgnoreColumns().ExecuteCommandAsync(); await _rep.AsUpdateable(it).IgnoreColumns().ExecuteCommandAsync();

@ -21,5 +21,7 @@ namespace Myshipping.Core.Entity
/// 配置数据json /// 配置数据json
/// </summary> /// </summary>
public string ConfigJson { get; set; } public string ConfigJson { get; set; }
} }
} }
Loading…
Cancel
Save