1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class PatientInfos
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; private set; }
- public DateTime UpdateTime { get; set; }
- /// <summary>
- /// Patient Id
- /// </summary>
- public string PatientId { get; set; }
- /// <summary>
- /// Fisrt Name of Patient
- /// </summary>
- public string FirstName { get; set; }
- /// <summary>
- /// Last Name of Patient
- /// </summary>
- public string LastName { get; set; }
- /// <summary>
- /// Birthday of Patient
- /// </summary>
- public DateTime? Birthday { get; set; }
- /// <summary>
- /// True - Male, False - Female
- /// </summary>
- public bool? IsMale { get; set; }
- /// <summary>
- /// Height of patient
- /// </summary>
- public double? Height { get; set; }
- /// <summary>
- /// Weight of patient
- /// </summary>
- public double? Weight { get; set; }
- public PatientOBInfo PatientObInfo { get; set; }
- public PatientGYNInfo PatientGynInfo { get; set; }
- public PatientURInfo PatientUrInfo { get; set; }
- public AnimalDetail AnimalDetail { get; set; }
- public string Age { get; set; }
- }
- }
|