TargetPatient.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.Dfh.UI
  6. {
  7. /// <summary>
  8. /// 징구대상 환자 정보
  9. /// </summary>
  10. /// <remarks>
  11. /// <p>[설계자]</p>
  12. /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
  13. /// <p>[원본 작성자]</p>
  14. /// <p> 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)</p>
  15. /// <p>[수정 작성자]</p>
  16. /// <p> 클립소프트 기술부 이인희</p>
  17. /// <p>----------------------------------------------------------------------------------------</p>
  18. /// <p>[HISTORY]</p>
  19. /// <p> 2015-09-30 : 최초작성</p>
  20. /// <p>----------------------------------------------------------------------------------------</p>
  21. /// </remarks>
  22. public class TargetPatient
  23. {
  24. public string PatientCode { get; set; } //환자 등록번호
  25. public string PatientName { get; set; } //환자 이름
  26. public string PatientSexAge { get; set; } //환자 성별나이
  27. public string PatientJuminNo { get; set; } //환자 주민번호
  28. public string HosType { get; set; } //환자 병원구분
  29. public string VisitType { get; set; } //환자 내원구분
  30. public string PatientAddr { get; set; } //환자 주소
  31. public string PatientTelNo { get; set; } //환자 전화번호
  32. public string cretno { get; set; } //수진내 이력번호
  33. public string Dschdd { get; set; } //퇴원일자
  34. public string clnDate { get; set; } //내원일 또는 입원일
  35. public string clnDeptCode { get; set; } //진료과 코드
  36. public string clnDeptName { get; set; } //진료과 명
  37. public string clnDeptNameKO { get; set; } //진료과 명(한글)
  38. public string clnDxCd { get; set; } //진단코드
  39. public string clnDxNm { get; set; } //진단 명
  40. public string MainDrId { get; set; } //주치의 ID
  41. public string MainDrNm { get; set; } //주치의 명
  42. public string Ward { get; set; } //병동
  43. public string RoomNo { get; set; } //병실
  44. public int OrderNo { get; set; } //처방번호
  45. public string OPdeptCode { get; set; } //수술과 코드
  46. public string OPdeptName { get; set; } //수술과 명
  47. public string OPdrId { get; set; } //집도의 아이디
  48. public string OPdrNm { get; set; } //집도의 명
  49. public string Insukind { get; set; } //보험유형
  50. //기왕력 관련 항목
  51. public string Ex_bp { get; set; } //고/저혈압
  52. public string Ex_dm { get; set; } //당뇨병
  53. public string Ex_heart { get; set; } //심장질환
  54. public string Ex_kidney { get; set; } //신장질환
  55. public string Ex_respiration { get; set; } //호흡기질환
  56. public string Ex_hx { get; set; } //과거병력
  57. public string Ex_allergy { get; set; } //알레르기
  58. public string Ex_drug { get; set; } //복용약물
  59. public string Ex_smoking { get; set; } //흡연상태
  60. public string Ex_idio { get; set; } //특이체질
  61. public string Ex_nacrotics { get; set; } //마약사고
  62. public string Ex_airway { get; set; } //기도이상 유무
  63. public string Ex_hemorrhage { get; set; } //출혈소인
  64. public string Ex_status_etc { get; set; } //기타
  65. }
  66. }