123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- #region Copyright © 2015 CLIPSOFT Co.,Ltd. All Rights Reserved.
- //
- // All rights are reserved. Reproduction or transmission in whole or in part,
- // in any form or by any means, electronic, mechanical or otherwise, is
- // prohibited without the prior written consent of the copyright owner.
- //
- // Filename: ConsentVO.cs
- //
- #endregion
- using System;
- using System.ComponentModel;
- namespace CLIP.eForm.Consent.Entity
- {
- /// <summary>
- /// 동의서 전체목록 엔터티 클래스
- /// </summary>
- /// <remarks>
- /// <p>[설계자]</p>
- /// <p> 클립소프트 연구소 박민지 (minjipark@clipsoft.co.kr)</p>
- /// <p>[원본 작성자]</p>
- /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
- /// <p>[수정 작성자]</p>
- /// <p> 클립소프트 기술부 이인희</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// <p>[HISTORY]</p>
- /// <p> 2016-07-01 : 최초작성</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// </remarks>
- [Serializable]
- public class ConsentVO
- {
- public ConsentVO()
- {
- foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
- {
- if (property.DisplayName == "ConsentMstRid"
- || property.DisplayName == "FormRid"
- || property.DisplayName == "OrderNo"
- || property.DisplayName == "printCnt"
- || property.DisplayName == "idx"
- || property.DisplayName == "formId"
- || property.DisplayName == "Cretno")
- {
- property.SetValue(this, 0);
- }
- else
- {
- property.SetValue(this, "");
- }
- }
- }
- // V2 Entity
- public int idx { get; set; } // 즐겨찾기 삭제 시 사용 컬럼
- public int formId { get; set; }
- public string formCode { get; set; }
- public string formName { get; set; }
- public string formPrntNm { get; set; }
- public int printCnt { get; set; }
- public string certPass { get; set; }
- public string pid { get; set; }
- public string deptEngName { get; set; }
- public string consentState { get; set; }
- public int consentMstRid { get; set; }
- public string ocrTag { get; set; }
- public string patientName { get; set; }
- public string modifyUserId { get; set; }
- public string modifyUserNm { get; set; }
- public string modifyDatetime { get; set; }
- public string createDatetime { get; set; }
- public string clnDate { get; set; }
- public int cretNo { get; set; }
- public string ordType { get; set; }
- public string deptCd { get; set; }
- public string mainDrId { get; set; }
- // V1 entity
- //public int ConsentMstRid { get; set; }
- public string ConsentName { get; set; }
- //public string ConsentState { get; set; }
- public string ConsentStateDisp { get; set; }
- public string HosType { get; set; }
- public string PatientCode { get; set; }
- public string PatientName { get; set; }
- public string VisitType { get; set; }
- public string VisitTypeName { get; set; }
- public string CosignDcId { get; set; }
- public string CosignDcName { get; set; }
- public string ClnDeptCd { get; set; }
- public string ClnDeptNm { get; set; }
- public string Doctor { get; set; }
- public string Ward { get; set; }
- public string RoomCd { get; set; }
- public string OcrNumber { get; set; }
- public string CreateUserId { get; set; }
- public string CreateDateTime { get; set; }
- public string CreateUserName { get; set; }
- //public string ClnDate { get; set; }
- //public int Cretno { get; set; }
- public string FormGuid { get; set; }
- public string FormCd { get; set; }
- public int FormRid { get; set; }
- //public int PrntCnt { get; set; }
- public int OrderNo { get; set; }
- public string OrderCd { get; set; }
- public string OrderNm { get; set; }
- public string OcrTagYN { get; set; }
- public string FormPrintName { get; set; }
- public string UserDrFlag { get; set; }
- public string PrntOnly { get; set; }
- public string OpDiagName { get; set; }
- public string OpName { get; set; }
- public string OpRsrvNo { get; set; }
- }
- }
|