| | |
| | | package com.moral.entity; |
| | | |
| | | public class Dictionary { |
| | | private String dictName; |
| | | import lombok.Data; |
| | | |
| | | private Integer dictValue; |
| | | @Data |
| | | public class Dictionary { |
| | | private String dictKey; |
| | | |
| | | private Integer id; |
| | | |
| | | private String dictName; |
| | | |
| | | private Integer isDelete; |
| | | |
| | | public String getDictName() { |
| | | return dictName; |
| | | } |
| | | private String description; |
| | | |
| | | 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; |
| | | } |
| | | } |