定位推送服务
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.

43 lines
1.4KB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TelpoPush.Position.Worker.Models.CacheTemplates
  7. {
  8. public class PersonInfoModel
  9. {
  10. public PersonModel person { get; set; }
  11. public string time { get; set; }
  12. }
  13. public class PersonModel
  14. {
  15. public string personId { get; set; }
  16. public string serialno { get; set; }
  17. public string personName { get; set; }
  18. public string deviceId { get; set; }
  19. public string nickName { get; set; }
  20. public bool gender { get; set; }
  21. public int height { get; set; }
  22. public int weight { get; set; }
  23. public string bornDate { get; set; }
  24. public string school { get; set; }
  25. public string grade { get; set; }
  26. public string className { get; set; }
  27. public string imagePath { get; set; }
  28. public string imagePathSmall { get; set; }
  29. public int age { get; set; }
  30. public string createTime { get; set; }
  31. public string remarks { get; set; }
  32. public int ishypertension { get; set; }
  33. public string emotion { get; set; }
  34. public int profession { get; set; }
  35. public int regularity { get; set; }
  36. public int chronicDisease { get; set; }
  37. public string apiUid { get; set; }
  38. public string apiRemark { get; set; }
  39. }
  40. }