package com.mandi.fendan.persist;
|
|
import java.io.Serializable;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
import javax.persistence.UniqueConstraint;
|
|
/**
|
* @author cx
|
* @version 创建时间:2017年10月23日
|
* 类说明
|
*/
|
@Entity
|
@Table(name="fd_systemconfig",uniqueConstraints={@UniqueConstraint(columnNames={"name"})})
|
public class Fd_Systemconfig implements Serializable {
|
@Id
|
private String id;
|
private String name;
|
private byte numorstr;
|
private String proptype;
|
private String value;
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public byte getNumorstr() {
|
return numorstr;
|
}
|
public void setNumorstr(byte numorstr) {
|
this.numorstr = numorstr;
|
}
|
public String getProptype() {
|
return proptype;
|
}
|
public void setProptype(String proptype) {
|
this.proptype = proptype;
|
}
|
public String getValue() {
|
return value;
|
}
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
|
|
|
}
|