package com.vci.server.framework.appConfig; import com.vci.common.objects.AbstractHistorizable; /** * AppConfigDetail Hibernate Object * */ public class AppConfigDetail extends AbstractHistorizable implements java.io.Serializable { /** * */ private static final long serialVersionUID = 1L; private String id = ""; private String name = ""; private String desc = ""; private String key = ""; private String value = ""; private String categoryId = ""; private AppConfigCategory category = new AppConfigCategory(); public AppConfigDetail(){ } public String getId(){ return this.id; } public void setId(String val){ this.id = val; } public String getName(){ return this.name; } public void setName(String val){ this.name = val; } public String getDesc(){ return this.desc; } public void setDesc(String val){ this.desc = val; } public String getKey(){ return this.key; } public void setKey(String val){ this.key = val; } public String getValue(){ return this.value; } public void setValue(String val){ this.value = val; } public String getCategoryId(){ return this.categoryId; } public void setCategoryId(String val){ this.categoryId = val; } public AppConfigCategory getCategory() { return category; } public void setCategory(AppConfigCategory category) { this.category = category; } }