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.

TopicHmBloodPress.cs 1.1KB

1 year ago
1 year ago
1 year ago
12345678910111213141516171819202122232425262728293031323334
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace HealthMonitor.Service.Sub.Topic.Model
  9. {
  10. public class TopicHmBloodPress
  11. {
  12. [JsonProperty("ts")]
  13. public long Ts { get; set; } = default!;
  14. [JsonProperty("bloodpress_id")]
  15. public string BloodPressId { get; set; } = default!;
  16. [JsonProperty("message_id")]
  17. public string MessageId { get; set; } = default!;
  18. [JsonProperty("serialno")]
  19. public string Serialno { get; set; } = default!;
  20. [JsonProperty("systolic_value")]
  21. public int SystolicValue { get; set; }
  22. [JsonProperty("diastolic_value")]
  23. public int DiastolicValue { get; set; }
  24. [JsonProperty("last_update")]
  25. public long LastUpdate { get; set; }
  26. [JsonProperty("create_time")]
  27. public long CreateTime { get; set; }
  28. [JsonProperty("method")]
  29. public int Method { get; set; }
  30. [JsonProperty("is_display")]
  31. public bool IsDisplay { get; set; }
  32. }
  33. }