package com.moral.entity;
|
|
public class Dictionary {
|
private String dictName;
|
|
private Integer dictValue;
|
|
private Integer isDelete;
|
|
public String getDictName() {
|
return dictName;
|
}
|
|
public void setDictName(String dictName) {
|
this.dictName = dictName == null ? null : dictName.trim();
|
}
|
|
public Integer getDictValue() {
|
return dictValue;
|
}
|
|
public void setDictValue(Integer dictValue) {
|
this.dictValue = dictValue;
|
}
|
|
public Integer getIsDelete() {
|
return isDelete;
|
}
|
|
public void setIsDelete(Integer isDelete) {
|
this.isDelete = isDelete;
|
}
|
}
|