Commit ae343c4d by liulongfei

窗口日志添加操作名称

parent e6566edf
...@@ -382,6 +382,7 @@ namespace VIZ.H2V.Module ...@@ -382,6 +382,7 @@ namespace VIZ.H2V.Module
LogOperation log = new LogOperation(); LogOperation log = new LogOperation();
log.ViewKey = this.ViewKey; log.ViewKey = this.ViewKey;
log.DisplayName = this.DisplayName;
log.StrategyType = this.StrategyType.GetDescription(); log.StrategyType = this.StrategyType.GetDescription();
log.Operation = strategyMode.GetDescription(); log.Operation = strategyMode.GetDescription();
log.BeginTime = now; log.BeginTime = now;
......
...@@ -16,6 +16,7 @@ namespace VIZ.H2V.Storage ...@@ -16,6 +16,7 @@ namespace VIZ.H2V.Storage
{ {
this.Map(p => p.ID).Name("编号"); this.Map(p => p.ID).Name("编号");
this.Map(p => p.ViewKey).Name("窗口"); this.Map(p => p.ViewKey).Name("窗口");
this.Map(p => p.DisplayName).Name("窗口名称");
this.Map(p => p.StrategyType).Name("机位"); this.Map(p => p.StrategyType).Name("机位");
this.Map(p => p.Operation).Name("操作"); this.Map(p => p.Operation).Name("操作");
this.Map(p => p.BeginTime).Name("开始时间"); this.Map(p => p.BeginTime).Name("开始时间");
...@@ -50,6 +51,11 @@ namespace VIZ.H2V.Storage ...@@ -50,6 +51,11 @@ namespace VIZ.H2V.Storage
public string ViewKey { get; set; } public string ViewKey { get; set; }
/// <summary> /// <summary>
/// 显示名称
/// </summary>
public string DisplayName { get; set; }
/// <summary>
/// 算法类型 /// 算法类型
/// </summary> /// </summary>
public string StrategyType { get; set; } public string StrategyType { get; set; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment