ConsentFormListVO.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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: ConsentSetVO.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> 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)</p>
  19. /// <p>[원본 작성자]</p>
  20. /// <p> 클립소프트 기술부 이인희</p>
  21. /// <p>[수정 작성자]</p>
  22. /// <p></p>
  23. /// <p>----------------------------------------------------------------------------------------</p>
  24. /// <p>[HISTORY]</p>
  25. /// <p> 2016-06-29 : 최초작성</p>
  26. /// <p>----------------------------------------------------------------------------------------</p>
  27. /// </remarks>
  28. [Serializable]
  29. public class ConsentFormListVO {
  30. public ConsentFormListVO() {
  31. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
  32. if (property.DisplayName == "formRid" || property.DisplayName == "consentMstRid" || property.DisplayName == "cretNo" || property.DisplayName == "printCnt") {
  33. property.SetValue(this, 0);
  34. }
  35. else {
  36. property.SetValue(this, "");
  37. }
  38. }
  39. }
  40. public int consentMstRid { get; set; }
  41. public string createUserId { get; set; }
  42. public string createUserName { get; set; }
  43. public string modifyUserId { get; set; }
  44. public string modifyUserName { get; set; }
  45. public string createDatetime { get; set; }
  46. public string ocrTag { get; set; }
  47. public string pid { get; set; }
  48. public string inDd { get; set; }
  49. public string ordType { get; set; }
  50. public string ordDeptCd { get; set; }
  51. public int cretNo { get; set; }
  52. public string opRsrvNo { get; set; }
  53. public string patientName { get; set; }
  54. public string consentState { get; set; }
  55. public string consentStateEng { get; set; }
  56. public string formCd { get; set; }
  57. public string formGuid { get; set; }
  58. public string formName { get; set; }
  59. public int formRid { get; set; }
  60. public string printOnly { get; set; }
  61. public int printCnt { get; set; }
  62. public string ocrTagPrntYn { get; set; }
  63. public string formPrntNm { get; set; }
  64. public string certUseYn { get; set; }
  65. public string opDiagNm { get; set; }
  66. public string opNm { get; set; }
  67. public string userDrFlag { get; set; }
  68. public string linkFormCd { get; set; }
  69. public string jinjeongCd { get; set; }
  70. public string DrOnly { get; set; }
  71. }
  72. }