您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

BloodPressCalibrationConfigModel.cs 726B

1234567891011121314151617181920212223242526
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HealthMonitor.Model.Service
  8. {
  9. public class BloodPressCalibrationConfigModel
  10. {
  11. [JsonProperty("imei")]
  12. public string Imei { get; set; } = default!;
  13. [JsonProperty("systolicCalibrationValue")]
  14. public int SystolicRefValue { get; set; }
  15. [JsonProperty("diastolicCalibrationValue")]
  16. public int DiastolicRefValue { get; set; }
  17. [JsonProperty("systolicIncValue")]
  18. public int SystolicIncValue { get; set; }
  19. [JsonProperty("diastolicIncValue")]
  20. public int DiastolicIncValue { get; set; }
  21. }
  22. }