ソースを参照

调整GetSampleTimeFromLastUpdate精度

datasub12_fetal_heart_rate_1
H Vs 1ヶ月前
コミット
c332c80a23
1個のファイルの変更4行の追加4行の削除
  1. +4
    -4
      HealthMonitor.WebApi/Worker.cs

+ 4
- 4
HealthMonitor.WebApi/Worker.cs ファイルの表示

@@ -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;



読み込み中…
キャンセル
保存