/// [설계자]
/// 클립소프트 연구소 박민지 (minjipark@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [수정 작성자]
/// 클립소프트 기술부 이인희
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-07-01 : 최초작성
/// ----------------------------------------------------------------------------------------
///
[Serializable]
public class ConsentVO {
public ConsentVO() {
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
if (property.DisplayName == "idx" || property.DisplayName == "consentMstRid" || property.DisplayName == "formId" || property.DisplayName == "cretNo") {
property.SetValue(this, 0);
} else {
property.SetValue(this, "");
}
}
}
public int idx { get; set; } // 즐겨찾기 삭제 시 사용 컬럼
public int consentMstRid { get; set; }
public int formId { get; set; }
public string formCode { get; set; }
public string formName { get; set; }
public string consentState { get; set; }
public string consentStateEng { get; set; }
public string prntCnt { get; set; }
public string ocrTag { get; set; }
public string pid { get; set; }
public string patientName { get; set; }
public string createUserId { get; set; }
public int cretNo { get; set; }
public string deptCd { get; set; }
public string mainDrId { get; set; }
public string inDd { get; set; }
public string ordDeptCd { get; set; }
public string ordType { get; set; }
}
/*
public ConsentVO() {
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
if (property.DisplayName == "idx" || property.DisplayName == "formId" || property.DisplayName == "printCnt" || property.DisplayName == "consentMstRid" || property.DisplayName == "cretNo") {
property.SetValue(this, 0);
} else {
property.SetValue(this, "");
}
}
}
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; }
}
*/
}