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; } }