PreviewConsent.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.UI {
  6. /// <summary>
  7. /// 미리보기 대상 동의서 정보
  8. /// </summary>
  9. /// <remarks>
  10. /// <p>[설계자]</p>
  11. /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
  12. /// <p>[원본 작성자]</p>
  13. /// <p> 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)</p>
  14. /// <p>[수정 작성자]</p>
  15. /// <p> 클립소프트 기술부 이인희</p>
  16. /// <p>----------------------------------------------------------------------------------------</p>
  17. /// <p>[HISTORY]</p>
  18. /// <p> 2015-07-30 : 최초작성</p>
  19. /// <p>----------------------------------------------------------------------------------------</p>
  20. /// </remarks>
  21. public class PreviewConsent {
  22. public string formId { get; set; } // 서식 Rid
  23. //public string formGuid { get; set; } // 서식 Guid
  24. public string consentMstRid { get; set; } //동의서이력 마스터 Rid
  25. public string formCd { get; set; } //서식관리 코드
  26. public string formName = string.Empty; //동의서명
  27. public string consentState { get; set; } // 동의서 한글 작성 상태
  28. public string consentStateEng { get; set; } // 동의서 영문 작성 상태
  29. private int rewriteConsentMstRid = 0; //재 작성 대상(원래) ConsentMstRid, 기본값이 0 이며 재작성 시에만, 타겟 동의서의 ConsentMstRid로 설정된다.
  30. public int RewriteConsentMstRid {
  31. get { return rewriteConsentMstRid; }
  32. set { rewriteConsentMstRid = value; }
  33. }
  34. private int reissueConsentMstRid = 0; // 재 발행시 대상(원래) ConsentMstRid
  35. public int ReissueConsentMstRid {
  36. get { return reissueConsentMstRid; }
  37. set { reissueConsentMstRid = value; }
  38. }
  39. public int orderNo { get; set; } //처방번호
  40. public string ocrCode { get; set; } //OCR 코드
  41. public string outputType { get; set; } // 출력 유형
  42. public string printTime { get; set; } //출력일시
  43. public string inputId { get; set; } //작성자ID
  44. public string inputNm { get; set; } //작성자명
  45. public string signImg { get; set; } //작성자 서명이미지
  46. public int prntCnt { get; set; } // 출력매수
  47. public int authSaveSeq { get; set; } // 인증저장 시퀀스
  48. public bool hasMedicalHistory { get; set; } // 서식에 기왕력 내역 존재 유무
  49. public string multiOcrcode { get; set; } //멀티출력인 경우의 OCR 코드
  50. public string printOnly { get; set; } // 출력만 가능한 서식 유무
  51. public string ocrtagPrntyn { get; set; } // OCR 코드 생성 여부
  52. public string ordType { get; set; } // 내원 구분
  53. public string multiMainDrIdCd { get; set; } //멀티출력인 경우의 MaindRcD
  54. public string printCommet { get; set; } // 출력용 멘트(2부째 찍힐때는 '환자보관용', 3부째는 찍힐때는 '센터보관용')
  55. //public string FORMPRNTNM { get; set; } // 서식 출력용 제목(리스트 제목과 다름)
  56. public string formPrintName { get; set; }
  57. public string opDiagName { get; set; }
  58. public string opName { get; set; }
  59. public String drOnly { get; set; } // knuh, 의사 출력 서식 여부
  60. public string userDrFlag { get; set; } // 외래 환자일 경우 사용자를 진료의로 변경할 대상 여부
  61. public string linkFormCd { get; set; } // 연결 서식 코드 (현재는 마취동의서 밖에 없음)
  62. public string jinjeongFormCd { get; set; } // 진정 동의서 코드
  63. }
  64. }