xiejun
2024-09-09 c826afb6dbc2c1d4433b3c127c5f30f9f72fb2dc
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;
    /**
     * 是否可以为空
@@ -48,7 +52,6 @@
     * 默认值
     */
    private String defaultValue;
    /**
     * 使用枚举英文名称
@@ -71,6 +74,16 @@
    private String btmTypeName;
    /**
     * 参照的链接类型名称
     */
    private String linkTypeName;
    /**
     * 选择了链接类型时选择的版本
     */
    private Integer version;
    /**
     * 属性的长度
     */
    private Integer attrLength;
@@ -85,7 +98,6 @@
     */
    private Integer scaleLength;
    /**
     * 取值范围
     */
@@ -95,6 +107,74 @@
     * 时间戳,格式是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;
@@ -225,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{" +
@@ -233,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 +
                '}';
    }
}