ConsentSetVO.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. {
  14. /// <summary>
  15. /// 동의서 SET (동의서 즐겨찾기) 정보 엔터티
  16. /// </summary>
  17. /// <remarks>
  18. /// <p>[설계자]</p>
  19. /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
  20. /// <p>[원본 작성자]</p>
  21. /// <p> 클립소프트 기술부 이인희</p>
  22. /// <p>[수정 작성자]</p>
  23. /// <p></p>
  24. /// <p>----------------------------------------------------------------------------------------</p>
  25. /// <p>[HISTORY]</p>
  26. /// <p> 2016-06-28 : 최초작성</p>
  27. /// <p>----------------------------------------------------------------------------------------</p>
  28. /// </remarks>
  29. [Serializable]
  30. public class ConsentSetVO
  31. {
  32. public ConsentSetVO()
  33. {
  34. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
  35. {
  36. if (property.DisplayName == "FormRid" || property.DisplayName == "PrntCnt")
  37. {
  38. property.SetValue(this, 0);
  39. }
  40. else
  41. {
  42. property.SetValue(this, "");
  43. }
  44. }
  45. }
  46. public int FormRid { get; set; }
  47. public string FormGuid { get; set; }
  48. public string FormCd { get; set; }
  49. public string FormName { get; set; }
  50. public string SetAuth { get; set; }
  51. public int PrntCnt { get; set; }
  52. public string PrintOnly { get; set; }
  53. public string OcrTagYN { get; set; }
  54. public string FormPrintName { get; set; }
  55. public string OpDiagName { get; set; }
  56. public string OpName { get; set; }
  57. public string UserDrFlag { get; set; }
  58. public string FullCategoryName { get; set; }
  59. public string LinkFormCd { get; set; }
  60. }
  61. }