package com.qxueyou.scc.sys.model;
|
|
import java.io.Serializable;
|
import javax.persistence.*;
|
|
import org.hibernate.annotations.GenericGenerator;
|
|
|
/**
|
* The persistent class for the sys_config database table.
|
*
|
*/
|
@Entity
|
//@Table(name="sys_config")
|
@Table(name="sys_config")
|
@NamedQuery(name="SysConfig.findAll", query="SELECT s FROM SysConfig s")
|
public class SysConfig implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@GeneratedValue(generator = "hibernate-uuid")
|
@GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
|
@Column(name="CONFIG_ID", unique=true, nullable=false, length=32)
|
private String configId;
|
|
@Column(name="CONFIG_KEY", length=32)
|
private String configKey;
|
|
@Column(name="VALUE", length=255)
|
private String value;
|
|
public String getConfigId() {
|
return this.configId;
|
}
|
|
public void setConfigId(String configId) {
|
this.configId = configId;
|
}
|
|
public String getConfigKey() {
|
return this.configKey;
|
}
|
|
public void setConfigKey(String configKey) {
|
this.configKey = configKey;
|
}
|
|
public String getValue() {
|
return this.value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
}
|