jyy
2021-01-26 ab2879bbcb846256cc182198b9c04e50fbc276c1
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package com.matrix.system.common.bean;
 
import com.matrix.core.anotations.Extend;
import com.matrix.core.pojo.EntityDTO;
 
/**
 * @description (数据字典)
 * @author 姜友瑶
 * @date 2018-07-10 07:52
 */
public class CustomerDataDictionary extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L;
 
    /**
     * 默认数据字典,不可删除
     */
    public static final String TYPE_DEFAULT = "0";
 
 
 
 
    /**
     * 主键
     */
    private String  id;
            
    
    /**
     * 数据类型名称
     * 1 默认,2 自定义  默认不可被删除
     */
    private Integer  typeName;
            
    
    /**
     * 类型码
     */
    private String  typeCode;
            
    
    /**
     * 字典值
     */
    private String  value;
            
    
    /**
     * 父码id
     */
    private String  parentId;
            
    
    /**
     * 序号
     */
    private Integer  sort;
            
    
    /**
     * 扩展字段
     */
    private String  extValue;
            
    
    /**
     * 所属公司id
     */
    private Long  companyId;
 
    /**
     * 父属性名称
     */
    private String parentTypeName;
            
    
 
    public String getId() {
        return id;
    }
       
       public void setId(String id) {
        this.id=id;
    }
       
 
    public Integer getTypeName() {
        return typeName;
    }
       
       public void setTypeName(Integer typeName) {
        this.typeName=typeName;
    }
       
 
    public String getTypeCode() {
        return typeCode;
    }
       
       public void setTypeCode(String typeCode) {
        this.typeCode=typeCode;
    }
       
 
    public String getValue() {
        return value;
    }
       
       public void setValue(String value) {
        this.value=value;
    }
       
 
    public String getParentId() {
        return parentId;
    }
       
       public void setParentId(String parentId) {
        this.parentId=parentId;
    }
       
 
    public Integer getSort() {
        return sort;
    }
       
       public void setSort(Integer sort) {
        this.sort=sort;
    }
       
 
    public String getExtValue() {
        return extValue;
    }
       
       public void setExtValue(String extValue) {
        this.extValue=extValue;
    }
       
 
    public Long getCompanyId() {
        return companyId;
    }
       
       public void setCompanyId(Long companyId) {
        this.companyId=companyId;
    }
 
    public String getParentTypeName() {
        return parentTypeName;
    }
 
    public void setParentTypeName(String parentTypeName) {
        this.parentTypeName = parentTypeName;
    }
}