Explorar el Código

调整增量值算法

td_orm
H Vs hace 1 año
padre
commit
533fb93486
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      HealthMonitor.WebApi/Controllers/HealthMonitor/HmBloodPressController.cs

+ 3
- 3
HealthMonitor.WebApi/Controllers/HealthMonitor/HmBloodPressController.cs Ver fichero

@@ -144,9 +144,9 @@ namespace HealthMonitor.WebApi.Controllers.HealthMonitor
// 偏移参数
var avgOffset = 0.25M;

// 增量值
var systolicInc = systolicAvg.Equals(0M) ? 0:(int)(systolicRefValue - systolicAvg * avgOffset)!;
var diastolicInc = diastolicAvg.Equals(0M) ? 0 : (int)(diastolicRefValue - diastolicAvg * avgOffset)!;
// 增量值=(标定值-平均值)* 0.25
var systolicInc = systolicAvg.Equals(0M) ? 0: (int)((systolicRefValue - systolicAvg)* avgOffset)!;
var diastolicInc = diastolicAvg.Equals(0M) ? 0 : (int)((diastolicRefValue - diastolicAvg) * avgOffset)!;

#endregion



Cargando…
Cancelar
Guardar