package com.yeshi.buwan.domain;
|
|
import javax.persistence.Entity;
|
|
/**
|
* 系统配置
|
*
|
* @author Administrator
|
*/
|
@Entity
|
public class Config {
|
private String id;
|
private String key;
|
private String value;
|
private String beizhu;
|
private String createtime;
|
private Long minVersion;//最小版本
|
private Integer systemId;//系统
|
|
public Long getMinVersion() {
|
return minVersion;
|
}
|
|
public void setMinVersion(Long minVersion) {
|
this.minVersion = minVersion;
|
}
|
|
public Integer getSystemId() {
|
return systemId;
|
}
|
|
public void setSystemId(Integer systemId) {
|
this.systemId = systemId;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
public String getBeizhu() {
|
return beizhu;
|
}
|
|
public void setBeizhu(String beizhu) {
|
this.beizhu = beizhu;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|