ConsentVO.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. #region Copyright © 2015 CLIPSOFT Co.,Ltd. All Rights Reserved.
  2. //
  3. // All rights are reserved. Reproduction or transmission in whole or in part,
  4. // in any form or by any means, electronic, mechanical or otherwise, is
  5. // prohibited without the prior written consent of the copyright owner.
  6. //
  7. // Filename: ConsentVO.cs
  8. //
  9. #endregion
  10. using System;
  11. using System.ComponentModel;
  12. namespace CLIP.eForm.Consent.Entity
  13. {
  14. /// <summary>
  15. /// 동의서 전체목록 엔터티 클래스
  16. /// </summary>
  17. /// <remarks>
  18. /// <p>[설계자]</p>
  19. /// <p> 클립소프트 연구소 박민지 (minjipark@clipsoft.co.kr)</p>
  20. /// <p>[원본 작성자]</p>
  21. /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
  22. /// <p>[수정 작성자]</p>
  23. /// <p> 클립소프트 기술부 이인희</p>
  24. /// <p>----------------------------------------------------------------------------------------</p>
  25. /// <p>[HISTORY]</p>
  26. /// <p> 2016-07-01 : 최초작성</p>
  27. /// <p>----------------------------------------------------------------------------------------</p>
  28. /// </remarks>
  29. [Serializable]
  30. public class ConsentVO
  31. {
  32. public ConsentVO()
  33. {
  34. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
  35. {
  36. if (property.DisplayName == "ConsentMstRid"
  37. || property.DisplayName == "FormRid"
  38. || property.DisplayName == "OrderNo"
  39. || property.DisplayName == "printCnt"
  40. || property.DisplayName == "idx"
  41. || property.DisplayName == "formId"
  42. || property.DisplayName == "Cretno")
  43. {
  44. property.SetValue(this, 0);
  45. }
  46. else
  47. {
  48. property.SetValue(this, "");
  49. }
  50. }
  51. }
  52. // V2 Entity
  53. public int idx { get; set; } // 즐겨찾기 삭제 시 사용 컬럼
  54. public int formId { get; set; }
  55. public string formCode { get; set; }
  56. public string formName { get; set; }
  57. public string formPrntNm { get; set; }
  58. public int printCnt { get; set; }
  59. public string certPass { get; set; }
  60. public string pid { get; set; }
  61. public string deptEngName { get; set; }
  62. public string consentState { get; set; }
  63. public int consentMstRid { get; set; }
  64. public string ocrTag { get; set; }
  65. public string patientName { get; set; }
  66. public string modifyUserId { get; set; }
  67. public string modifyUserNm { get; set; }
  68. public string modifyDatetime { get; set; }
  69. public string createDatetime { get; set; }
  70. public string clnDate { get; set; }
  71. public int cretNo { get; set; }
  72. public string ordType { get; set; }
  73. public string deptCd { get; set; }
  74. public string mainDrId { get; set; }
  75. // V1 entity
  76. //public int ConsentMstRid { get; set; }
  77. public string ConsentName { get; set; }
  78. //public string ConsentState { get; set; }
  79. public string ConsentStateDisp { get; set; }
  80. public string HosType { get; set; }
  81. public string PatientCode { get; set; }
  82. public string PatientName { get; set; }
  83. public string VisitType { get; set; }
  84. public string VisitTypeName { get; set; }
  85. public string CosignDcId { get; set; }
  86. public string CosignDcName { get; set; }
  87. public string ClnDeptCd { get; set; }
  88. public string ClnDeptNm { get; set; }
  89. public string Doctor { get; set; }
  90. public string Ward { get; set; }
  91. public string RoomCd { get; set; }
  92. public string OcrNumber { get; set; }
  93. public string CreateUserId { get; set; }
  94. public string CreateDateTime { get; set; }
  95. public string CreateUserName { get; set; }
  96. //public string ClnDate { get; set; }
  97. //public int Cretno { get; set; }
  98. public string FormGuid { get; set; }
  99. public string FormCd { get; set; }
  100. public int FormRid { get; set; }
  101. //public int PrntCnt { get; set; }
  102. public int OrderNo { get; set; }
  103. public string OrderCd { get; set; }
  104. public string OrderNm { get; set; }
  105. public string OcrTagYN { get; set; }
  106. public string FormPrintName { get; set; }
  107. public string UserDrFlag { get; set; }
  108. public string PrntOnly { get; set; }
  109. public string OpDiagName { get; set; }
  110. public string OpName { get; set; }
  111. public string OpRsrvNo { get; set; }
  112. }
  113. }