package com.moral.entity; public class DictionaryData { private Integer id; private Integer dictValue; private String dictDataName; private Object dictDataValue; private Integer isFixed; private Integer isDelete; private Integer parentId; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getDictValue() { return dictValue; } public void setDictValue(Integer dictValue) { this.dictValue = dictValue; } public String getDictDataName() { return dictDataName; } public void setDictDataName(String dictDataName) { this.dictDataName = dictDataName == null ? null : dictDataName.trim(); } public Object getDictDataValue() { return dictDataValue; } public void setDictDataValue(Object dictDataValue) { this.dictDataValue = dictDataValue; } public Integer getIsFixed() { return isFixed; } public void setIsFixed(Integer isFixed) { this.isFixed = isFixed; } public Integer getIsDelete() { return isDelete; } public void setIsDelete(Integer isDelete) { this.isDelete = isDelete; } public Integer getParentId() { return parentId; } public void setParentId(Integer parentId) { this.parentId = parentId; } }