ConsentVO.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 == "consentMstRid" || property.DisplayName == "formId" || property.DisplayName == "prntCnt" || property.DisplayName == "cretno") {
  33. property.SetValue(this, 0);
  34. }
  35. else {
  36. property.SetValue(this, "");
  37. }
  38. }
  39. }
  40. public int consentMstRid { get; set; }
  41. public int formId { get; set; }
  42. public string formCd { get; set; }
  43. public string formName { get; set; }
  44. public string consentState { get; set; }
  45. public string consentStateDisp { get; set; }
  46. public string ocrTag { get; set; }
  47. public string ocrTagYN { get; set; }
  48. public int prntCnt { get; set; }
  49. public string prntOnly { get; set; }
  50. public string formPrintName { get; set; }
  51. public string userDrFlag { get; set; }
  52. public string linkFormCd { get; set; } // 연계 서식 코드
  53. public string jinjeongCd { get; set; } // 진정동의서 서식 코드
  54. public string DrOnly { get; set; } // 의사 전용 서식
  55. public string certUseYn { get; set; } // 공인인증 사용 유무
  56. public string instCd { get; set; }
  57. public int cretno { get; set; }
  58. public string pid { get; set; }
  59. public string patientName { get; set; }
  60. public string ordtype { get; set; }
  61. public string clnDeptCd { get; set; }
  62. public string clnDeptNm { get; set; }
  63. public string clnDate { get; set; }
  64. public string mainDrId { get; set; }
  65. public string wardCd { get; set; }
  66. public string roomCd { get; set; }
  67. public string opDiagName { get; set; }
  68. public string opName { get; set; }
  69. public string opRsrvNo { get; set; }
  70. public string createUserId { get; set; }
  71. public string createDateTime { get; set; }
  72. public string createUserName { get; set; }
  73. public string modifyUserId { get; set; }
  74. public string modifyUserName { get; set; }
  75. }
  76. }