From 3bb54d86b0a80a13374b10b1a9d9d0f131a85f9d Mon Sep 17 00:00:00 2001 From: fengxiang <110431245@qq.com> Date: Mon, 16 Jul 2018 15:08:58 +0800 Subject: [PATCH] 大屏登录 返回地址信息完善 --- src/main/java/com/moral/entity/Dictionary.java | 34 +++++++++------------------------- 1 files changed, 9 insertions(+), 25 deletions(-) diff --git a/src/main/java/com/moral/entity/Dictionary.java b/src/main/java/com/moral/entity/Dictionary.java index be69fe8..e09ee42 100644 --- a/src/main/java/com/moral/entity/Dictionary.java +++ b/src/main/java/com/moral/entity/Dictionary.java @@ -1,33 +1,17 @@ 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; - } } \ No newline at end of file -- Gitblit v1.8.0