/// [설계자]
/// 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 이인희
/// [수정 작성자]
///
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-06-29 : 최초작성
/// ----------------------------------------------------------------------------------------
///
[Serializable]
public class ConsentBySearchVO {
public ConsentBySearchVO() {
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
if (property.DisplayName == "formId" || property.DisplayName == "printCnt") {
property.SetValue(this, 0);
} else {
property.SetValue(this, "");
}
}
}
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; }
}
}