ConsentVO.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. /// <summary>
  14. /// 동의서 전체목록 엔터티 클래스
  15. /// </summary>
  16. /// <remarks>
  17. /// <p>[설계자]</p>
  18. /// <p> 클립소프트 연구소 박민지 (minjipark@clipsoft.co.kr)</p>
  19. /// <p>[원본 작성자]</p>
  20. /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
  21. /// <p>[수정 작성자]</p>
  22. /// <p> 클립소프트 기술부 이인희</p>
  23. /// <p>----------------------------------------------------------------------------------------</p>
  24. /// <p>[HISTORY]</p>
  25. /// <p> 2016-07-01 : 최초작성</p>
  26. /// <p>----------------------------------------------------------------------------------------</p>
  27. /// </remarks>
  28. [Serializable]
  29. public class ConsentVO {
  30. public ConsentVO() {
  31. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
  32. if (property.DisplayName == "idx" || property.DisplayName == "consentMstRid" || property.DisplayName == "formId" || property.DisplayName == "cretNo") {
  33. property.SetValue(this, 0);
  34. } else {
  35. property.SetValue(this, "");
  36. }
  37. }
  38. }
  39. public int idx { get; set; } // 즐겨찾기 삭제 시 사용 컬럼
  40. public int consentMstRid { get; set; }
  41. public int formId { get; set; }
  42. public string formCode { get; set; }
  43. public string formName { get; set; }
  44. public string consentState { get; set; }
  45. public string consentStateEng { get; set; }
  46. public string prntCnt { get; set; }
  47. public string ocrTag { get; set; }
  48. public string pid { get; set; }
  49. public string patientName { get; set; }
  50. public string createUserId { get; set; }
  51. public int cretNo { get; set; }
  52. public string deptCd { get; set; }
  53. public string mainDrId { get; set; }
  54. public string inDd { get; set; }
  55. public string ordDeptCd { get; set; }
  56. public string ordType { get; set; }
  57. }
  58. /*
  59. public ConsentVO() {
  60. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
  61. if (property.DisplayName == "idx" || property.DisplayName == "formId" || property.DisplayName == "printCnt" || property.DisplayName == "consentMstRid" || property.DisplayName == "cretNo") {
  62. property.SetValue(this, 0);
  63. } else {
  64. property.SetValue(this, "");
  65. }
  66. }
  67. }
  68. public int idx { get; set; } // 즐겨찾기 삭제 시 사용 컬럼
  69. public int formId { get; set; }
  70. public string formCode { get; set; }
  71. public string formName { get; set; }
  72. public string formPrntNm { get; set; }
  73. public int printCnt { get; set; }
  74. public string certPass { get; set; }
  75. public string pid { get; set; }
  76. public string deptEngName { get; set; }
  77. public string consentState { get; set; }
  78. public int consentMstRid { get; set; }
  79. public string ocrTag { get; set; }
  80. public string patientName { get; set; }
  81. public string modifyUserId { get; set; }
  82. public string modifyUserNm { get; set; }
  83. public string modifyDatetime { get; set; }
  84. public string createDatetime { get; set; }
  85. public string clnDate { get; set; }
  86. public int cretNo { get; set; }
  87. public string ordType { get; set; }
  88. public string deptCd { get; set; }
  89. public string mainDrId { get; set; }
  90. }
  91. */
  92. }