You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TopicHmPregnancyHeartRate.cs 1.2KB

4 months ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.Service.Sub.Topic.Model
  8. {
  9. public class TopicHmPregnancyHeartRate
  10. {
  11. [JsonProperty("ts")]
  12. public long Ts { get; set; } = default!;
  13. [JsonProperty("pregnancy_heart_rate_id")]
  14. public string PregnancyHeartRateId { get; set; } = default!;
  15. [JsonProperty("message_id")]
  16. public string MessageId { get; set; } = default!;
  17. [JsonProperty("person_id")]
  18. public string PersonId { get; set; } = default!;
  19. [JsonProperty("serialno")]
  20. public string Serialno { get; set; } = default!;
  21. [JsonProperty("pregnancy_heart_rate")]
  22. public int PregnancyHeartRate { get; set; }
  23. [JsonProperty("last_update")]
  24. public long LastUpdate { get; set; }
  25. [JsonProperty("create_time")]
  26. public long CreateTime { get; set; }
  27. [JsonProperty("method")]
  28. public int Method { get; set; }
  29. [JsonProperty("is_display")]
  30. public bool IsDisplay { get; set; }
  31. [JsonProperty("device_key")]
  32. public string DeviceKey { get; set; } = default!;
  33. }
  34. }