fengxiang
2018-06-09 81cc95bee24b88d28cd5f0a97c689384c4ab1b81
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;
    }
}