| | |
| | | * 属性类型,使用枚举VciFieldTypeEnum |
| | | */ |
| | | private String attributeDataType; |
| | | /** |
| | | * 属性UI控件显示类型 |
| | | */ |
| | | private String attributeUIType; |
| | | |
| | | /** |
| | | * 是否可以为空 |
| | |
| | | * 默认值 |
| | | */ |
| | | private String defaultValue; |
| | | |
| | | |
| | | /** |
| | | * 使用枚举英文名称 |
| | |
| | | private String btmTypeName; |
| | | |
| | | /** |
| | | * 参照的链接类型名称 |
| | | */ |
| | | private String linkTypeName; |
| | | |
| | | /** |
| | | * 选择了链接类型时选择的版本 |
| | | */ |
| | | private Integer version; |
| | | |
| | | /** |
| | | * 属性的长度 |
| | | */ |
| | | private Integer attrLength; |
| | |
| | | */ |
| | | private Integer scaleLength; |
| | | |
| | | |
| | | /** |
| | | * 取值范围 |
| | | */ |
| | |
| | | * 时间戳,格式是yyyy-MM-dd HH:mm:ss.SSS |
| | | */ |
| | | private Date ts; |
| | | |
| | | /** |
| | | * 创建人 |
| | | */ |
| | | private String creator; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * 最后修改人 |
| | | */ |
| | | private String lastModifier; |
| | | |
| | | /** |
| | | * 最后修改时间,格式是yyyy-MM-dd HH:mm:ss |
| | | */ |
| | | private Date lastModifyTime; |
| | | |
| | | public String getLinkTypeName() { |
| | | return linkTypeName; |
| | | } |
| | | |
| | | public void setLinkTypeName(String linkTypeName) { |
| | | this.linkTypeName = linkTypeName; |
| | | } |
| | | |
| | | public void setVersion(Integer version) { |
| | | this.version = version; |
| | | } |
| | | |
| | | public Integer getVersion() { |
| | | return version; |
| | | } |
| | | |
| | | public void setCreator(String creator) { |
| | | this.creator = creator; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public void setLastModifier(String lastModifier) { |
| | | this.lastModifier = lastModifier; |
| | | } |
| | | |
| | | public void setLastModifyTime(Date lastModifyTime) { |
| | | this.lastModifyTime = lastModifyTime; |
| | | } |
| | | |
| | | public String getCreator() { |
| | | return creator; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public String getLastModifier() { |
| | | return lastModifier; |
| | | } |
| | | |
| | | public Date getLastModifyTime() { |
| | | return lastModifyTime; |
| | | } |
| | | |
| | | public String getOid() { |
| | | return oid; |
| | |
| | | this.scaleLength = scaleLength; |
| | | } |
| | | |
| | | public String getAttributeUIType() { |
| | | return attributeUIType; |
| | | } |
| | | |
| | | public void setAttributeUIType(String attributeUIType) { |
| | | this.attributeUIType = attributeUIType; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "OsAttributeDTO{" + |
| | |
| | | ", name='" + name + '\'' + |
| | | ", description='" + description + '\'' + |
| | | ", attributeDataType='" + attributeDataType + '\'' + |
| | | ", attributeUIType='" + attributeUIType + '\'' + |
| | | ", nullableFlag=" + nullableFlag + |
| | | ", defaultValue='" + defaultValue + '\'' + |
| | | ", enumId='" + enumId + '\'' + |
| | | ", enumName='" + enumName + '\'' + |
| | | ", btmTypeId='" + btmTypeId + '\'' + |
| | | ", btmTypeName='" + btmTypeName + '\'' + |
| | | ", linkTypeName='" + linkTypeName + '\'' + |
| | | ", version=" + version + |
| | | ", attrLength=" + attrLength + |
| | | ", precisionLength=" + precisionLength + |
| | | ", scaleLength=" + scaleLength + |
| | | ", range='" + range + '\'' + |
| | | ", ts=" + ts + |
| | | ", creator='" + creator + '\'' + |
| | | ", createTime=" + createTime + |
| | | ", lastModifier='" + lastModifier + '\'' + |
| | | ", lastModifyTime=" + lastModifyTime + |
| | | '}'; |
| | | } |
| | | } |