ConsentBySearchVO.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 ConsentBySearchVO {
  30. public ConsentBySearchVO() {
  31. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
  32. if (property.DisplayName == "FormRid" || property.DisplayName == "PrntCnt") {
  33. property.SetValue(this, 0);
  34. } else {
  35. property.SetValue(this, "");
  36. }
  37. }
  38. }
  39. public string FormCd { get; set; }
  40. public string FormGuid { get; set; }
  41. public string FormName { get; set; }
  42. public string FullCategoryName { get; set; }
  43. public int FormRid { get; set; }
  44. public int PrntCnt { get; set; }
  45. public string PrntOnly { get; set; }
  46. public string OcrTagYN { get; set; }
  47. public string FormPrintName { get; set; }
  48. public string OpDiagName { get; set; }
  49. public string OpName { get; set; }
  50. public string UserDrFlag { get; set; }
  51. public string LinkFormCd { get; set; }
  52. }
  53. }