package net.caiban.utils.param;
import java.util.Date;
public class Param implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private Integer id;
private String name;
private String types;
private String key;
private String value;
private Integer sort;
private Integer isuse;
private Date gmtCreated;
private Date gmtModified;
/**
* @return the id
*/
public Integer getId() {
return id;
}
/**
* @param id
* the id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return the types
*/
public String getTypes() {
return types;
}
/**
* @param types
* the types to set
*/
public void setTypes(String types) {
this.types = types;
}
/**
* @return the key
*/
public String getKey() {
return key;
}
/**
* @param key
* the key to set
*/
public void setKey(String key) {
this.key = key;
}
/**
* @return the value
*/
public String getValue() {
return value;
}
/**
* @param value
* the value to set
*/
public void setValue(String value) {
this.value = value;
}
/**
* @return the sort
*/
public Integer getSort() {
return sort;
}
/**
* @param sort
* the sort to set
*/
public void setSort(Integer sort) {
this.sort = sort;
}
/**
* @return the isuse
*/
public Integer getIsuse() {
return isuse;
}
/**
* @param isuse the isuse to set
*/
public void setIsuse(Integer isuse) {
this.isuse = isuse;
}
/**
* @return the gmtCreated
*/
public Date getGmtCreated() {
return gmtCreated;
}
/**
* @param gmtCreated
* the gmtCreated to set
*/
public void setGmtCreated(Date gmtCreated) {
this.gmtCreated = gmtCreated;
}
/**
* @return the gmtModified
*/
public Date getGmtModified() {
return gmtModified;
}
/**
* @param gmtModified
* the gmtModified to set
*/
public void setGmtModified(Date gmtModified) {
this.gmtModified = gmtModified;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
}