Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

37 lines
1.2KB

  1. using Newtonsoft.Json;
  2. using System.Reflection;
  3. namespace HealthMonitor.WebApi.Model.Request
  4. {
  5. public class BloodPressManualCalibration
  6. {
  7. // [JsonProperty(nameof(Imei))]
  8. public string Imei { get; set; } = default!;
  9. //[JsonProperty(nameof(ManualSystolicRefValue))]
  10. public int ManualSystolicRefValue { set; get; }
  11. // [JsonProperty(nameof(ManualDiastolicRefValue))]
  12. public int ManualDiastolicRefValue { set; get; }
  13. /// <summary>
  14. /// 只下发标定值,不计算增量值
  15. /// </summary>
  16. public bool IsPushRefOnly { set; get; } = false;
  17. // [JsonProperty(nameof(Gender))]
  18. // public int Gender { set; get; }
  19. //// [JsonProperty(nameof(Height))]
  20. // public float Height { set; get; }
  21. //// [JsonProperty(nameof(Weight))]
  22. // public float Weight { set; get; }
  23. //// [JsonProperty(nameof(Hypertension))]
  24. // public bool Hypertension { set; get; }
  25. // manual_systolic_ref_value INT,
  26. //manual_diastolic_ref_value INT,
  27. //gender TINYINT,
  28. //age INT,
  29. //height FLOAT,
  30. //weight FLOAT,
  31. //hypertension bool
  32. }
  33. }