This commit is contained in:
tanglong 2025-07-16 15:28:43 +08:00
parent 15f0a92a39
commit d3cc0e7db0
2 changed files with 7 additions and 1 deletions

View File

@ -212,7 +212,8 @@ namespace YD_AllHeartRates.Api.Services.Impl
Sex = student.Sex,
HeartRate = heartRate?.Value ?? 0,
JumpingRope = jumpRope?.JumpValue ?? 0,
Strength = strength
Strength = strength,
HeartRateQuantityOfElectricity = heartRate?.QuantityOfElectricity ?? 0
});
}

View File

@ -97,5 +97,10 @@ namespace YD_AllHeartRates.Commons.Dto.LargeScreen
/// 运动强度
/// </summary>
public int Strength { get; set; }
/// <summary>
///心率设备电量
/// </summary>
public int HeartRateQuantityOfElectricity { get; set; }
}
}