package com.vci.client.framework.appConfig.object;
|
import java.util.*;
|
/**
|
* AppConfigDetail Client Object
|
*
|
*/
|
public class AppConfigDetailObject 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 = "";
|
public AppConfigDetailObject(){
|
}
|
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;
|
}
|
}
|