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.
|
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace HealthMonitor.Model.Cache
- {
- public class Person
- {
- [JsonProperty("personId")]
- public string PersonId { get; set; } = default!;
-
- [JsonProperty("deviceId")]
- public string DeviceId { get; set; } = default!;
-
- [JsonProperty("serialno")]
- public string SerialNo { get; set; } = default!;
-
- [JsonProperty("remarks")]
- public string Remarks { get; set; } = default!;
-
- [JsonProperty("ishypertension")]
- public bool Ishypertension { get; set; } = default!;
-
- [JsonProperty("personName")]
- public string PersonName { get; set; } = default!;
-
- [JsonProperty("gender")]
- public bool Gender { get; set; } = default!;
-
- [JsonProperty("age")]
- public int Age { get; set; } = default!;
-
- [JsonProperty("bornDate")]
- public string BornDate { get; set; } = default!;
-
- }
- public class GpsDevicePerson
- {
-
- [JsonProperty("person")]
- public Person Person { get; set; } = default!;
-
- [JsonProperty("time")]
- public DateTime Time { get; set; } = default!;
- }
- }
|