Browse Source

最大值最小值两边扩散

datasub12_fetal_heart_rate
H Vs 2 months ago
parent
commit
56a0d27a28
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      HealthMonitor.Service/Biz/db/TDengineService.cs

+ 3
- 2
HealthMonitor.Service/Biz/db/TDengineService.cs View File

@@ -1161,8 +1161,9 @@ namespace HealthMonitor.Service.Biz.db
// minValue = 60;
// maxValue = 100;
//}
// 最小值不能少于60
minValue = minValue < 60 ? 60 : minValue;
// 最大值最小值两边扩散
// 最小值不能大于60
minValue = minValue > 60 ? 60 : minValue;

// 最大值不能少于100
maxValue= maxValue < 100 ? 100 : maxValue;


Loading…
Cancel
Save