fengxiang
2018-06-23 7389bfdee40eabf6d8c39252b5485184fc27c168
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
    }
}