xufenglei
2018-05-14 c0d88c1f82394c0374d2d592f4d2bca951d6334e
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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;
    }
}