Browse Source

修正胎动采样时间

datasub12_fetal_heart_rate_1
H Vs 1 month ago
parent
commit
811a2895e4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      HealthMonitor.WebApi/Worker.cs

+ 1
- 1
HealthMonitor.WebApi/Worker.cs View File

@@ -1039,7 +1039,7 @@ namespace HealthMonitor.WebApi
_logger.LogInformation($"{imeiDel} 胎动统计周期:{statStartTime.ToString("yyyy-MM-dd HH:mm:ss")}-{statEndTime.ToString("yyyy-MM-dd HH:mm:ss")}");


var fetalMovementSampleTime = DateTimeUtil.ConvertToTimeStamp(statEndTime).ToString()[..10];
var fetalMovementSampleTime = DateTimeUtil.ConvertToTimeStamp(statStartTime).ToString()[..10];
var isFetalMovementExisted = await _deviceCacheMgr.FetalMovementIsExistedAsync(imeiDel, fetalMovementSampleTime);

if (!isFetalMovementExisted)


Loading…
Cancel
Save