| | |
| | | * 属性类型显示文本 |
| | | */ |
| | | private String attributeDataTypeText; |
| | | /** |
| | | * 属性UI控件显示类型 |
| | | */ |
| | | private String attributeUIType; |
| | | /** |
| | | * 属性UI控件显示类型文本 |
| | | */ |
| | | private String attributeUITypeText; |
| | | |
| | | /** |
| | | * 是否可以为空 |
| | |
| | | * 参照的业务类型名称 |
| | | */ |
| | | private String btmTypeName; |
| | | |
| | | /** |
| | | * 参照的链接类型名称 |
| | | */ |
| | | private String linkTypeName; |
| | | |
| | | /** |
| | | * 选择了链接类型时选择的版本 |
| | | */ |
| | | private Integer version; |
| | | |
| | | /** |
| | | * 属性的长度 |
| | |
| | | this.btmTypeName = btmTypeName; |
| | | } |
| | | |
| | | public String getLinkTypeName() { |
| | | return linkTypeName; |
| | | } |
| | | |
| | | public void setLinkTypeName(String linkTypeName) { |
| | | this.linkTypeName = linkTypeName; |
| | | } |
| | | |
| | | public Integer getVersion() { |
| | | return version; |
| | | } |
| | | |
| | | public void setVersion(Integer version) { |
| | | this.version = version; |
| | | } |
| | | |
| | | public Integer getAttrLength() { |
| | | return attrLength; |
| | | } |
| | |
| | | this.scaleLength = scaleLength; |
| | | } |
| | | |
| | | public String getAttributeUIType() { |
| | | return attributeUIType; |
| | | } |
| | | |
| | | public void setAttributeUIType(String attributeUIType) { |
| | | this.attributeUIType = attributeUIType; |
| | | } |
| | | |
| | | public String getAttributeUITypeText() { |
| | | return attributeUITypeText; |
| | | } |
| | | |
| | | public void setAttributeUITypeText(String attributeUITypeText) { |
| | | this.attributeUITypeText = attributeUITypeText; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "OsAttributeVO{" + |
| | |
| | | ", description='" + description + '\'' + |
| | | ", attributeDataType='" + attributeDataType + '\'' + |
| | | ", attributeDataTypeText='" + attributeDataTypeText + '\'' + |
| | | ", attributeUIType='" + attributeUIType + '\'' + |
| | | ", attributeUITypeText='" + attributeUITypeText + '\'' + |
| | | ", nullableFlag=" + nullableFlag + |
| | | ", defaultValue='" + defaultValue + '\'' + |
| | | ", enumId='" + enumId + '\'' + |
| | | ", enumName='" + enumName + '\'' + |
| | | ", btmTypeId='" + btmTypeId + '\'' + |
| | | ", btmTypeName='" + btmTypeName + '\'' + |
| | | ", linkTypeName='" + linkTypeName + '\'' + |
| | | ", version=" + version + |
| | | ", attrLength=" + attrLength + |
| | | ", precisionLength=" + precisionLength + |
| | | ", scaleLength=" + scaleLength + |
| | | ", range='" + range + '\'' + |
| | | ", other='" + other + '\'' + |
| | | ", btmname='" + btmname + '\'' + |
| | | ", owner='" + owner + '\'' + |
| | | ", creator='" + creator + '\'' + |