From b4db153d2e28d451592811fea29c6d1bab71887b Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期二, 30 四月 2024 13:52:53 +0800 Subject: [PATCH] 优化运行分析,运行记录结构更改,运行服务新增监测中断判断 --- Yw.Service.Run.Core/02-model/RunRealRecord.cs | 17 ++++++++++++----- 1 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Yw.Service.Run.Core/02-model/RunRealRecord.cs b/Yw.Service.Run.Core/02-model/RunRealRecord.cs index f901bdd..bee37c3 100644 --- a/Yw.Service.Run.Core/02-model/RunRealRecord.cs +++ b/Yw.Service.Run.Core/02-model/RunRealRecord.cs @@ -19,7 +19,8 @@ this.ObjectID = rhs.ObjectID; this.DataTime = rhs.DataTime; this.RSa = rhs.RSa; - this.ContinueRunTime = rhs.ContinueRunTime; + this.ContinueTime = rhs.ContinueTime; + this.TotalShutTime = rhs.TotalShutTime; this.TotalRunTime = rhs.TotalRunTime; this.BootTimes = rhs.BootTimes; this.AnalyStatus = rhs.AnalyStatus; @@ -35,7 +36,8 @@ this.ObjectID = rhs.ObjectID; this.DataTime = rhs.DataTime; this.RSa = rhs.RSa; - this.ContinueRunTime = rhs.ContinueRunTime; + this.ContinueTime = rhs.ContinueTime; + this.TotalShutTime = rhs.TotalShutTime; this.TotalRunTime = rhs.TotalRunTime; this.BootTimes = rhs.BootTimes; this.AnalyStatus = rhs.AnalyStatus; @@ -63,12 +65,17 @@ public int RSa { get; set; } /// <summary> - /// 杩炵画杩愯鏃堕棿 + /// 杩炵画鏃堕棿锛堢锛� /// </summary> - public int ContinueRunTime { get; set; } + public int ContinueTime { get; set; } /// <summary> - /// 鎬昏繍琛屾椂闂� + /// 鎬诲仠鏈烘椂闂达紙绉掞級 + /// </summary> + public int TotalShutTime { get; set; } + + /// <summary> + /// 鎬昏繍琛屾椂闂达紙绉掞級 /// </summary> public int TotalRunTime { get; set; } -- Gitblit v1.9.3