1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #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 == "formId" || property.DisplayName == "prntCnt" || property.DisplayName == "cretno") {
- property.SetValue(this, 0);
- }
- else {
- property.SetValue(this, "");
- }
- }
- }
- public int consentMstRid { get; set; }
- public int formId { get; set; }
- public string formCd { get; set; }
- public string formName { get; set; }
- public string consentState { get; set; }
- public string consentStateDisp { get; set; }
- public string ocrTag { get; set; }
- public string ocrTagYN { get; set; }
- public int prntCnt { get; set; }
- public string prntOnly { get; set; }
- public string formPrintName { get; set; }
- public string userDrFlag { get; set; }
- public string linkFormCd { get; set; } // 연계 서식 코드
- public string jinjeongCd { get; set; } // 진정동의서 서식 코드
- public string DrOnly { get; set; } // 의사 전용 서식
- public string certUseYn { get; set; } // 공인인증 사용 유무
- public string instCd { get; set; }
- public int cretno { get; set; }
- public string pid { get; set; }
- public string patientName { get; set; }
- public string ordtype { get; set; }
- public string clnDeptCd { get; set; }
- public string clnDeptNm { get; set; }
- public string clnDate { get; set; }
- public string mainDrId { get; set; }
- public string wardCd { get; set; }
- public string roomCd { get; set; }
- public string opDiagName { get; set; }
- public string opName { get; set; }
- public string opRsrvNo { get; set; }
- public string createUserId { get; set; }
- public string createDateTime { get; set; }
- public string createUserName { get; set; }
- public string modifyUserId { get; set; }
- public string modifyUserName { get; set; }
- }
- }
|