TargetPatient.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.UI {
  6. /// <summary>
  7. /// 징구대상 환자 정보
  8. /// </summary>
  9. /// <remarks>
  10. /// <p>[설계자]</p>
  11. /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
  12. /// <p>[원본 작성자]</p>
  13. /// <p> 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)</p>
  14. /// <p>[수정 작성자]</p>
  15. /// <p> 클립소프트 기술부 이인희</p>
  16. /// <p>----------------------------------------------------------------------------------------</p>
  17. /// <p>[HISTORY]</p>
  18. /// <p> 2015-09-30 : 최초작성</p>
  19. /// <p> 2019-08 : 클래스 수정</p>
  20. /// <p>----------------------------------------------------------------------------------------</p>
  21. /// </remarks>
  22. public class TargetPatient {
  23. public string pid { get; set; } //환자 등록번호
  24. public string name { get; set; } //환자 이름
  25. public string sa { get; set; } //환자 성별나이
  26. public string jumin { get; set; } //환자 주민번호
  27. public string instcd { get; set; } //환자 병원구분
  28. public string ordtype { get; set; } //환자 내원구분
  29. public string addr { get; set; } //환자 주소
  30. public string telno { get; set; } //환자 전화번호
  31. public string cretno { get; set; } //수진내 이력번호
  32. public string Dschdd { get; set; } //퇴원일자
  33. public string clnDate { get; set; } //내원일 또는 입원일
  34. public string clnDeptCode { get; set; } //진료과 코드
  35. public string clnDeptName { get; set; } //진료과 명
  36. public string clnDxCd { get; set; } //진단코드
  37. public string clnDxNm { get; set; } //진단 명
  38. public string mainDrId { get; set; } //주치의 ID
  39. public string mainDrNm { get; set; } //주치의 명
  40. public string ward { get; set; } //병동
  41. public string roomno { get; set; } //병실
  42. public int orderno { get; set; } //처방번호
  43. public string opDeptCd { get; set; } //수술과 코드
  44. public string opDeptNm { get; set; } //수술과 명
  45. public string opDrId { get; set; } //집도의 아이디
  46. public string opDrNm { get; set; } //집도의 명
  47. public string Insukind { get; set; } //보험유형
  48. public string OpCnfmDate { get; set; }
  49. public string PerfDrName { get; set; }
  50. public string PerfDrFlag { get; set; }
  51. public string PerfDrDept { get; set; }
  52. public string OpDiagName { get; set; }
  53. public string OpName { get; set; }
  54. public string OpremFact { get; set; }
  55. public string AnstDrName1 { get; set; }
  56. public string AnstDrFlag1 { get; set; }
  57. public string AnstDeptName1 { get; set; }
  58. public string AnstDrName2 { get; set; }
  59. public string AnstDrFlag2 { get; set; }
  60. public string AnstDeptName2 { get; set; }
  61. public string AnstDrName3 { get; set; }
  62. public string AnstDrFlag3 { get; set; }
  63. public string AnstDeptName3 { get; set; }
  64. public string OpRsrvNo { get; set; }
  65. public string ordtypeHngnm { get; set; }
  66. public string clnDeptEngNm { get; set; }
  67. public string birthDd { get; set; }
  68. // 생성자 (빈값 설정)
  69. public TargetPatient() {
  70. this.pid = "";
  71. this.name = "";
  72. this.sa = "";
  73. this.jumin = "";
  74. this.instcd = "";
  75. this.ordtype = "";
  76. this.addr = "";
  77. this.telno = "";
  78. cretno = "";
  79. Dschdd = "";
  80. clnDate = "";
  81. clnDeptCode = "";
  82. clnDeptName = "";
  83. clnDxCd = "";
  84. clnDxNm = "";
  85. this.mainDrId = "";
  86. this.mainDrNm = "";
  87. this.ward = "";
  88. this.roomno = "";
  89. orderno = -1;
  90. opDeptCd = "";
  91. opDeptNm = "";
  92. opDrId = "";
  93. opDrNm = "";
  94. Insukind = "";
  95. OpCnfmDate = "";
  96. PerfDrName = "";
  97. PerfDrFlag = "";
  98. PerfDrDept = "";
  99. OpDiagName = "";
  100. OpName = "";
  101. AnstDrName1 = "";
  102. AnstDrFlag1 = "";
  103. AnstDeptName1 = "";
  104. AnstDrName2 = "";
  105. AnstDrFlag2 = "";
  106. AnstDeptName2 = "";
  107. AnstDrName3 = "";
  108. AnstDrFlag3 = "";
  109. AnstDeptName3 = "";
  110. OpRsrvNo = "";
  111. ordtypeHngnm = "";
  112. clnDeptEngNm = "";
  113. birthDd = "";
  114. }
  115. }
  116. }