ludc
2024-09-09 88c5cf35a5ea870378d7964086ed2c09ddc299c8
Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/dto/OsAttributeDTO.java
@@ -38,6 +38,10 @@
     * 属性类型,使用枚举VciFieldTypeEnum
     */
    private String attributeDataType;
    /**
     * 属性UI控件显示类型
     */
    private  String attributeUIType;
    /**
     * 是否可以为空
@@ -301,6 +305,14 @@
        this.scaleLength = scaleLength;
    }
    public String getAttributeUIType() {
        return attributeUIType;
    }
    public void setAttributeUIType(String attributeUIType) {
        this.attributeUIType = attributeUIType;
    }
    @Override
    public String toString() {
        return "OsAttributeDTO{" +
@@ -309,17 +321,24 @@
                ", 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 +
                '}';
    }
}