PatInfoListVO.cs 963 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.Entity
  6. {
  7. [Serializable]
  8. public class PatInfoListVO
  9. {
  10. //환자 등록번호
  11. public string pid { get; set; }
  12. //환자 이름
  13. public string hngnm { get; set; }
  14. //환자 주민번호 앞자리
  15. public string rrgstno1 { get; set; }
  16. //환자 주민번호 뒷자리 ex) 1******
  17. public string rrgstno2 { get; set; }
  18. //환자 나이
  19. public string age { get; set; }
  20. //환자 휴대폰번호
  21. public string mpphontel { get; set; }
  22. //환자 주소
  23. public string addr { get; set; }
  24. //환자 최근내원일
  25. public string lastorddd { get; set; }
  26. //환자 최근내원과
  27. public string lastorddept { get; set; }
  28. //환자 최근보험유형
  29. public string lastinsukind { get; set; }
  30. }
  31. }