Parcourir la source

调整GetSampleTimeFromLastUpdate精度

datasub12_fetal_heart_rate_1
H Vs il y a 1 mois
Parent
révision
c332c80a23
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. +4
    -4
      HealthMonitor.WebApi/Worker.cs

+ 4
- 4
HealthMonitor.WebApi/Worker.cs Voir le fichier

@@ -2611,10 +2611,10 @@ namespace HealthMonitor.WebApi
private DateTime GetSampleTimeFromLastUpdate(DateTime lastUpdate,int interval)
{
DateTime nowInterval = lastUpdate;
if (nowInterval.Second > 0)
{
nowInterval = nowInterval.AddMinutes(1);
}
//if (nowInterval.Second > 0)
//{
// nowInterval = nowInterval.AddMinutes(1);
//}
// 计算last_update到上一间隔的分钟数
int minutesToSubtract = nowInterval.Minute % interval;



Chargement…
Annuler
Enregistrer