ConsentVO.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 == "FormRid" || property.DisplayName == "OrderNo" || 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 string ConsentName { get; set; }
  42. public string ConsentState { get; set; }
  43. public string ConsentStateDisp { get; set; }
  44. public string HosType { get; set; }
  45. public string PatientCode { get; set; }
  46. public string PatientName { get; set; }
  47. public string VisitType { get; set; }
  48. public string VisitTypeName { get; set; }
  49. public string CosignDcId { get; set; }
  50. public string CosignDcName { get; set; }
  51. public string ClnDeptCd { get; set; }
  52. public string ClnDeptNm { get; set; }
  53. public string Doctor { get; set; }
  54. public string Ward { get; set; }
  55. public string RoomCd { get; set; }
  56. public string OcrNumber { get; set; }
  57. public string CreateUserId { get; set; }
  58. public string CreateDateTime { get; set; }
  59. public string CreateUserName { get; set; }
  60. public string ClnDate { get; set; }
  61. public int Cretno { get; set; }
  62. public string FormGuid { get; set; }
  63. public string FormCd { get; set; }
  64. public int FormRid { get; set; }
  65. public int PrntCnt { get; set; }
  66. public int OrderNo { get; set; }
  67. public string OrderCd { get; set; }
  68. public string OrderNm { get; set; }
  69. public string OcrTagYN { get; set; }
  70. public string FormPrintName { get; set; }
  71. public string UserDrFlag { get; set; }
  72. public string PrntOnly { get; set; }
  73. public string OpDiagName { get; set; }
  74. public string OpName { get; set; }
  75. public string OpRsrvNo { get; set; }
  76. }
  77. }