/// [설계자]
/// 클립소프트 연구소 박민지 (minjipark@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [수정 작성자]
/// 클립소프트 기술부 이인희
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-07-01 : 최초작성
/// ----------------------------------------------------------------------------------------
///
[Serializable]
public class InspectionVO {
public InspectionVO() {
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
property.SetValue(this, "");
//if (property.DisplayName == "idx" || property.DisplayName == "formId" || property.DisplayName == "printCnt" || property.DisplayName == "consentMstRid") {
// property.SetValue(this, 0);
//} else {
//}
}
}
public string baseCd { get; set; }
public string supportDeptCd { get; set; }
public string supportDeptNm { get; set; }
}
}