package com.qxueyou.scc.sys.model;
|
|
import java.io.Serializable;
|
import javax.persistence.*;
|
|
import org.hibernate.annotations.GenericGenerator;
|
|
|
/**
|
* The persistent class for the sys_dictionary database table.
|
*
|
*/
|
@Entity
|
@Table(name="sys_dictionary")
|
@NamedQuery(name="SysDictionary.findAll", query="SELECT s FROM SysDictionary s")
|
public class SysDictionary implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@GeneratedValue(generator = "hibernate-uuid")
|
@GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
|
@Column(name="DICTIONARY_ID", unique=true, nullable=false, length=32)
|
private String dictionaryId;
|
|
@Column(name="DIC_KEY", length=32)
|
private String dicKey;
|
|
@Column(name="STATUS")
|
private short status;
|
|
@Column(name="TYPE_ID", length=32)
|
private String typeId;
|
|
@Column(name="VALUE", length=255)
|
private String value;
|
|
public SysDictionary() {
|
}
|
|
public String getDictionaryId() {
|
return this.dictionaryId;
|
}
|
|
public void setDictionaryId(String dictionaryId) {
|
this.dictionaryId = dictionaryId;
|
}
|
|
public String getDicKey() {
|
return this.dicKey;
|
}
|
|
public void setDicKey(String dicKey) {
|
this.dicKey = dicKey;
|
}
|
|
public short getStatus() {
|
return this.status;
|
}
|
|
public void setStatus(short status) {
|
this.status = status;
|
}
|
|
public String getTypeId() {
|
return this.typeId;
|
}
|
|
public void setTypeId(String typeId) {
|
this.typeId = typeId;
|
}
|
|
public String getValue() {
|
return this.value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
}
|