Patient.cs 1.0 KB

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection.Emit;
  5. using System.Text;
  6. namespace WpfTest1.SQLite
  7. {
  8. public class Patient
  9. {
  10. public int p_id { get; set; }
  11. public string p_record_id { get; set; } //注意这里的record指的是病例号不是记录的record
  12. public string p_name { get; set; }
  13. public string p_gender { get; set; }
  14. public double p_height { get; set; }
  15. public double p_weight { get; set; }
  16. public int p_pregnancy_time { get; set; }
  17. public DateTime p_birthdate { get; set; }
  18. public string p_phone { get; set; }
  19. public string p_address { get; set; }
  20. public string p_diagnosis { get; set; }
  21. public string p_history { get; set; }
  22. public string p_name_py { get; set; }
  23. public DateTime p_last_filter_time { get; set; }
  24. public DateTime p_last_evaluation_time { get; set; }
  25. public Boolean p_delete_flag { get; set; }
  26. public int doc_id { get; set; }
  27. }
  28. }