PatientInfos.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Flyinsono.DBCopy.Tool.Entities
  7. {
  8. internal class PatientInfos
  9. {
  10. public string Id { get; private set; }
  11. public DateTime CreateTime { get; private set; }
  12. public DateTime UpdateTime { get; set; }
  13. /// <summary>
  14. /// Patient Id
  15. /// </summary>
  16. public string PatientId { get; set; }
  17. /// <summary>
  18. /// Fisrt Name of Patient
  19. /// </summary>
  20. public string FirstName { get; set; }
  21. /// <summary>
  22. /// Last Name of Patient
  23. /// </summary>
  24. public string LastName { get; set; }
  25. /// <summary>
  26. /// Birthday of Patient
  27. /// </summary>
  28. public DateTime? Birthday { get; set; }
  29. /// <summary>
  30. /// True - Male, False - Female
  31. /// </summary>
  32. public bool? IsMale { get; set; }
  33. /// <summary>
  34. /// Height of patient
  35. /// </summary>
  36. public double? Height { get; set; }
  37. /// <summary>
  38. /// Weight of patient
  39. /// </summary>
  40. public double? Weight { get; set; }
  41. public PatientOBInfo PatientObInfo { get; set; }
  42. public PatientGYNInfo PatientGynInfo { get; set; }
  43. public PatientURInfo PatientUrInfo { get; set; }
  44. public AnimalDetail AnimalDetail { get; set; }
  45. public string Age { get; set; }
  46. }
  47. }