/// [설계자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [수정 작성자]
///
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-05-20 : 최초작성
/// ----------------------------------------------------------------------------------------
///
[Serializable]
public class CategoryForDropdownVO {
public CategoryForDropdownVO() {
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
if (property.DisplayName == "categoryId") {
property.SetValue(this, 0);
} else if (property.DisplayName == "parentCategoryId") {
property.SetValue(this, 0);
} else {
property.SetValue(this, "");
}
}
}
public int categoryId { get; set; }
public string categoryCode { get; set; }
public int parentCategoryId { get; set; }
public string categoryName { get; set; }
}
}