Files
jshERP/src/main/java/com/jsh/model/po/SystemConfig.java
AlanGao 072599953e update
2018-04-07 13:11:17 +08:00

50 lines
927 B
Java

package com.jsh.model.po;
@SuppressWarnings("serial")
public class SystemConfig implements java.io.Serializable {
private Long id;
private String type;
private String name;
private String value;
private String description;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}