|
|
@@ -222,6 +222,8 @@ namespace HealthMonitor.WebApi |
|
|
|
|
|
|
|
systolicRefValue = lastPush!.SystolicRefValue; |
|
|
|
diastolicRefValue = lastPush!.DiastolicRefValue; |
|
|
|
lastPushSystolicInc = lastPush!.SystolicIncValue; |
|
|
|
lastPushDiastolicInc = lastPush!.DiastolicIncValue; |
|
|
|
|
|
|
|
condition = $"ts between '{lastPush?.Timestamp:yyyy-MM-dd HH:mm:ss.fff}' and '{startTime:yyyy-MM-dd HH:mm:ss.fff}' " + |
|
|
|
$"and serialno='{imeiDel}' " + |
|
|
@@ -249,8 +251,7 @@ namespace HealthMonitor.WebApi |
|
|
|
var currentSystolicInc = (int)((systolicRefValue - systolicAvg) * systolicAvgOffset)!; |
|
|
|
var currentDiastolicInc = (int)((diastolicRefValue - diastolicAvg) * diastolicAvgOffset)!; |
|
|
|
|
|
|
|
lastPushSystolicInc = lastPush!.SystolicIncValue; |
|
|
|
lastPushDiastolicInc= lastPush!.DiastolicIncValue; |
|
|
|
|
|
|
|
// 累计增量 |
|
|
|
systolicInc = currentSystolicInc + lastPushSystolicInc; |
|
|
|
diastolicInc = currentDiastolicInc + lastPushDiastolicInc; |
|
|
|