xiejun
2024-09-09 c826afb6dbc2c1d4433b3c127c5f30f9f72fb2dc
Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/OsAttributeVO.java
@@ -43,6 +43,14 @@
     * 属性类型显示文本
     */
    private String attributeDataTypeText;
    /**
     * 属性UI控件显示类型
     */
    private  String attributeUIType;
    /**
     * 属性UI控件显示类型文本
     */
    private  String attributeUITypeText;
    /**
     * 是否可以为空
@@ -64,7 +72,6 @@
     */
    private String enumName;
    /**
     * 参照的业务类型编号
     */
@@ -74,6 +81,16 @@
     * 参照的业务类型名称
     */
    private String btmTypeName;
    /**
     * 参照的链接类型名称
     */
    private String linkTypeName;
    /**
     * 选择了链接类型时选择的版本
     */
    private Integer version;
    /**
     * 属性的长度
@@ -96,7 +113,12 @@
    private String range;
    /**
     * 业务类型名称,是值这条数据的业务类型,不是属性所属的业务类型
     * 字段为参照时参照的相关属性
     */
    private String other;
    /**
     * 业务类型名称,是值这条数据的业务类型,不是属性所属的业务类型,应该是业务类型为属性池
     */
    private String btmname;
@@ -129,6 +151,14 @@
     * 时间戳,格式是yyyy-MM-dd HH:mm:ss.SSS
     */
    private Date ts;
    public String getOther() {
        return other;
    }
    public void setOther(String other) {
        this.other = other;
    }
    public String getOid() {
        return oid;
@@ -226,6 +256,22 @@
        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;
    }
@@ -315,6 +361,22 @@
        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{" +
@@ -324,16 +386,21 @@
                ", 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 + '\'' +