using Newtonsoft.Json; using System.Reflection; namespace HealthMonitor.WebApi.Model.Request { public class BloodPressManualCalibration { // [JsonProperty(nameof(Imei))] public string Imei { get; set; } = default!; //[JsonProperty(nameof(ManualSystolicRefValue))] public int ManualSystolicRefValue { set; get; } // [JsonProperty(nameof(ManualDiastolicRefValue))] public int ManualDiastolicRefValue { set; get; } /// /// 只下发标定值,不计算增量值 /// public bool IsPushRefOnly { set; get; } = false; // [JsonProperty(nameof(Gender))] // public int Gender { set; get; } //// [JsonProperty(nameof(Height))] // public float Height { set; get; } //// [JsonProperty(nameof(Weight))] // public float Weight { set; get; } //// [JsonProperty(nameof(Hypertension))] // public bool Hypertension { set; get; } // manual_systolic_ref_value INT, //manual_diastolic_ref_value INT, //gender TINYINT, //age INT, //height FLOAT, //weight FLOAT, //hypertension bool } }