| | |
| | | /* |
| | | * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
| | | * |
| | | * Redistribution and use in source and binary forms, with or without |
| | | * modification, are permitted provided that the following conditions are met: |
| | | * |
| | | * Redistributions of source code must retain the above copyright notice, |
| | | * this list of conditions and the following disclaimer. |
| | | * Redistributions in binary form must reproduce the above copyright |
| | | * notice, this list of conditions and the following disclaimer in the |
| | | * documentation and/or other materials provided with the distribution. |
| | | * Neither the name of the dreamlu.net developer nor the names of its |
| | | * contributors may be used to endorse or promote products derived from |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package com.vci.ubcs.code.dto; |
| | | |
| | | |
| | | import com.vci.ubcs.code.vo.pagemodel.BaseModelVO; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | /** |
| | | * 主题库分类的模板属性数据传输对象 |
| | | * 编码库定义-模板属性 数据传输对象实体类 |
| | | * |
| | | * @author weidy |
| | | * @date 2022-01-24 |
| | | * @author ludc |
| | | * @since 2023-05-8 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class CodeClassifyTemplateAttrDTO extends BaseModelVO { |
| | | |
| | | /** |
| | | * 禁止修改这个值 |
| | | */ |
| | | * 禁止修改这个值 |
| | | */ |
| | | private static final long serialVersionUID = 4615707118652601470L; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 说明 |
| | | */ |
| | | //@Column(columnDefinition = "说明") |
| | | private String explain; |
| | | |
| | | /** |
| | | * 选择库标识 |
| | | */ |
| | | //@Column(columnDefinition = "选择库标识") |
| | | private String libraryIdentification; |
| | | |
| | | /** |
| | | * 级联属性编号 |
| | | */ |
| | | //@Column(columnDefinition = "级联属性编号") |
| | | private String parentCode; |
| | | |
| | | /** |
| | | * 级联属性名称 |
| | | */ |
| | | //@Column(columnDefinition = "级联属性名称") |
| | | private String parentName; |
| | | |
| | | /** |
| | | * 级联查询属性 |
| | | */ |
| | | //@Column(columnDefinition = "级联查询属性") |
| | | private String parentQueryAttr; |
| | | |
| | | public String getExplain() { |
| | | return explain; |
| | | } |
| | | |
| | | public void setExplain(String explain) { |
| | | this.explain = explain; |
| | | } |
| | | |
| | | public String getLibraryIdentification() { |
| | | return libraryIdentification; |
| | | } |
| | | |
| | | public void setLibraryIdentification(String libraryIdentification) { |
| | | this.libraryIdentification = libraryIdentification; |
| | | } |
| | | |
| | | public String getParentCode() { |
| | | return parentCode; |
| | | } |
| | | |
| | | public void setParentCode(String parentCode) { |
| | | this.parentCode = parentCode; |
| | | } |
| | | |
| | | public String getParentName() { |
| | | return parentName; |
| | | } |
| | | |
| | | public void setParentName(String parentName) { |
| | | this.parentName = parentName; |
| | | } |
| | | |
| | | public String getParentQueryAttr() { |
| | | return parentQueryAttr; |
| | | } |
| | | |
| | | public void setParentQueryAttr(String parentQueryAttr) { |
| | | this.parentQueryAttr = parentQueryAttr; |
| | | } |
| | | |
| | | public String getEnumString() { |
| | | return enumString; |
| | | } |
| | | |
| | | public void setEnumString(String enumString) { |
| | | this.enumString = enumString; |
| | | } |
| | | |
| | | /** |
| | | * 获取 所属模板 |
| | | */ |
| | | public String getClassifytemplateoid (){ |
| | | return classifytemplateoid; |
| | | } |
| | | |
| | | /** |
| | | * 设置 所属模板 |
| | | */ |
| | | public void setClassifytemplateoid (String classifytemplateoid){ |
| | | this.classifytemplateoid = classifytemplateoid; |
| | | } |
| | | |
| | | /** |
| | | * 获取所属模板显示文本 |
| | | */ |
| | | public String getClassifytemplateoidName (){ |
| | | return classifytemplateoidName; |
| | | } |
| | | |
| | | /** |
| | | * 设置所属模板显示文本 |
| | | */ |
| | | public void setClassifytemplateoidName (String classifytemplateoidName){ |
| | | this.classifytemplateoidName = classifytemplateoidName; |
| | | } |
| | | /** |
| | | * 获取 所属分类中的属性主键 |
| | | */ |
| | | public String getClassifyattributeoid (){ |
| | | return classifyattributeoid; |
| | | } |
| | | |
| | | /** |
| | | * 设置 所属分类中的属性主键 |
| | | */ |
| | | public void setClassifyattributeoid (String classifyattributeoid){ |
| | | this.classifyattributeoid = classifyattributeoid; |
| | | } |
| | | |
| | | /** |
| | | * 获取所属分类中的属性主键显示文本 |
| | | */ |
| | | public String getClassifyattributeoidName (){ |
| | | return classifyattributeoidName; |
| | | } |
| | | |
| | | /** |
| | | * 设置所属分类中的属性主键显示文本 |
| | | */ |
| | | public void setClassifyattributeoidName (String classifyattributeoidName){ |
| | | this.classifyattributeoidName = classifyattributeoidName; |
| | | } |
| | | /** |
| | | * 获取 属性的类型 |
| | | */ |
| | | public String getAttributedatatype (){ |
| | | return attributedatatype; |
| | | } |
| | | |
| | | /** |
| | | * 设置 属性的类型 |
| | | */ |
| | | public void setAttributedatatype (String attributedatatype){ |
| | | this.attributedatatype = attributedatatype; |
| | | } |
| | | |
| | | /** |
| | | * 获取 是否关键属性 |
| | | */ |
| | | public String getKeyattrflag (){ |
| | | return keyattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否关键属性 |
| | | */ |
| | | public void setKeyattrflag (String keyattrflag){ |
| | | this.keyattrflag = keyattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 是否快速查询属性 |
| | | */ |
| | | public String getQueryattrflag (){ |
| | | return queryattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否快速查询属性 |
| | | */ |
| | | public void setQueryattrflag (String queryattrflag){ |
| | | this.queryattrflag = queryattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 是否高级查询属性 |
| | | */ |
| | | public String getSeniorqueryattrflag (){ |
| | | return seniorqueryattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否高级查询属性 |
| | | */ |
| | | public void setSeniorqueryattrflag (String seniorqueryattrflag){ |
| | | this.seniorqueryattrflag = seniorqueryattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 相似查重属性 |
| | | */ |
| | | public String getSamerepeatattrflag (){ |
| | | return samerepeatattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 相似查重属性 |
| | | */ |
| | | public void setSamerepeatattrflag (String samerepeatattrflag){ |
| | | this.samerepeatattrflag = samerepeatattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 是否排序 |
| | | */ |
| | | public String getSortattrflag (){ |
| | | return sortattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否排序 |
| | | */ |
| | | public void setSortattrflag (String sortattrflag){ |
| | | this.sortattrflag = sortattrflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 是否生成二维码 |
| | | */ |
| | | public String getQrcodeflag (){ |
| | | return qrcodeflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否生成二维码 |
| | | */ |
| | | public void setQrcodeflag (String qrcodeflag){ |
| | | this.qrcodeflag = qrcodeflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 是否生成一维码 |
| | | */ |
| | | public String getBarcodeflag (){ |
| | | return barcodeflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否生成一维码 |
| | | */ |
| | | public void setBarcodeflag (String barcodeflag){ |
| | | this.barcodeflag = barcodeflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 组合规则 |
| | | */ |
| | | public String getComponentrule (){ |
| | | return componentrule; |
| | | } |
| | | |
| | | /** |
| | | * 设置 组合规则 |
| | | */ |
| | | public void setComponentrule (String componentrule){ |
| | | this.componentrule = componentrule; |
| | | } |
| | | |
| | | /** |
| | | * 获取 验证规则 |
| | | */ |
| | | public String getVerifyrule (){ |
| | | return verifyrule; |
| | | } |
| | | |
| | | /** |
| | | * 设置 验证规则 |
| | | */ |
| | | public void setVerifyrule (String verifyrule){ |
| | | this.verifyrule = verifyrule; |
| | | } |
| | | |
| | | /** |
| | | * 获取 分类注入层级 |
| | | */ |
| | | public String getClassifyinvokelevel (){ |
| | | return classifyinvokelevel; |
| | | } |
| | | |
| | | /** |
| | | * 设置 分类注入层级 |
| | | */ |
| | | public void setClassifyinvokelevel (String classifyinvokelevel){ |
| | | this.classifyinvokelevel = classifyinvokelevel; |
| | | } |
| | | |
| | | /** |
| | | * 获取 分类注入的属性英文名称 |
| | | */ |
| | | public String getClassifyinvokeattr (){ |
| | | return classifyinvokeattr; |
| | | } |
| | | |
| | | /** |
| | | * 设置 分类注入的属性英文名称 |
| | | */ |
| | | public void setClassifyinvokeattr (String classifyinvokeattr){ |
| | | this.classifyinvokeattr = classifyinvokeattr; |
| | | } |
| | | |
| | | /** |
| | | * 获取 分类注入的属性中文名称 |
| | | */ |
| | | public String getClassifyinvokeattrname (){ |
| | | return classifyinvokeattrname; |
| | | } |
| | | |
| | | /** |
| | | * 设置 分类注入的属性中文名称 |
| | | */ |
| | | public void setClassifyinvokeattrname (String classifyinvokeattrname){ |
| | | this.classifyinvokeattrname = classifyinvokeattrname; |
| | | } |
| | | |
| | | /** |
| | | * 获取 分类注入是否可以编辑 |
| | | */ |
| | | public String getClassifyinvokeeditflag (){ |
| | | return classifyinvokeeditflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 分类注入是否可以编辑 |
| | | */ |
| | | public void setClassifyinvokeeditflag (String classifyinvokeeditflag){ |
| | | this.classifyinvokeeditflag = classifyinvokeeditflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 码值序号 |
| | | */ |
| | | public Integer getOrdernum (){ |
| | | return ordernum; |
| | | } |
| | | |
| | | /** |
| | | * 设置 码值序号 |
| | | */ |
| | | public void setOrdernum (Integer ordernum){ |
| | | this.ordernum = ordernum; |
| | | } |
| | | |
| | | /** |
| | | * 获取 表单里是否显示 |
| | | */ |
| | | public String getFormdisplayflag (){ |
| | | return formdisplayflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 表单里是否显示 |
| | | */ |
| | | public void setFormdisplayflag (String formdisplayflag){ |
| | | this.formdisplayflag = formdisplayflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 列表里是否显示 |
| | | */ |
| | | public String getTabledisplayflag (){ |
| | | return tabledisplayflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 列表里是否显示 |
| | | */ |
| | | public void setTabledisplayflag (String tabledisplayflag){ |
| | | this.tabledisplayflag = tabledisplayflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 所属属性分组 |
| | | */ |
| | | public String getAttributegroup (){ |
| | | return attributegroup; |
| | | } |
| | | |
| | | /** |
| | | * 设置 所属属性分组 |
| | | */ |
| | | public void setAttributegroup (String attributegroup){ |
| | | this.attributegroup = attributegroup; |
| | | } |
| | | |
| | | /** |
| | | * 获取 使用枚举英文编号 |
| | | */ |
| | | public String getEnumid (){ |
| | | return enumid; |
| | | } |
| | | |
| | | /** |
| | | * 设置 使用枚举英文编号 |
| | | */ |
| | | public void setEnumid (String enumid){ |
| | | this.enumid = enumid; |
| | | } |
| | | |
| | | /** |
| | | * 获取 使用枚举中文名称 |
| | | */ |
| | | public String getEnumname (){ |
| | | return enumname; |
| | | } |
| | | |
| | | /** |
| | | * 设置 使用枚举中文名称 |
| | | */ |
| | | public void setEnumname (String enumname){ |
| | | this.enumname = enumname; |
| | | } |
| | | |
| | | /** |
| | | * 获取 枚举是否可以编辑 |
| | | */ |
| | | public String getEnumeditflag (){ |
| | | return enumeditflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 枚举是否可以编辑 |
| | | */ |
| | | public void setEnumeditflag (String enumeditflag){ |
| | | this.enumeditflag = enumeditflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 参照的业务类型英文名称 |
| | | */ |
| | | public String getReferbtmid (){ |
| | | return referbtmid; |
| | | } |
| | | |
| | | /** |
| | | * 设置 参照的业务类型英文名称 |
| | | */ |
| | | public void setReferbtmid (String referbtmid){ |
| | | this.referbtmid = referbtmid; |
| | | } |
| | | |
| | | /** |
| | | * 获取 参照的业务类型中文名称 |
| | | */ |
| | | public String getReferbtmname (){ |
| | | return referbtmname; |
| | | } |
| | | |
| | | /** |
| | | * 设置 参照的业务类型中文名称 |
| | | */ |
| | | public void setReferbtmname (String referbtmname){ |
| | | this.referbtmname = referbtmname; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 获取 是否必输 |
| | | */ |
| | | public String getRequireflag (){ |
| | | return requireflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否必输 |
| | | */ |
| | | public void setRequireflag (String requireflag){ |
| | | this.requireflag = requireflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 是否只读 |
| | | */ |
| | | public String getReadonlyflag (){ |
| | | return readonlyflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否只读 |
| | | */ |
| | | public void setReadonlyflag (String readonlyflag){ |
| | | this.readonlyflag = readonlyflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 属性控制输入的长度 |
| | | */ |
| | | public Integer getControllength (){ |
| | | return controllength; |
| | | } |
| | | |
| | | /** |
| | | * 设置 属性控制输入的长度 |
| | | */ |
| | | public void setControllength (Integer controllength){ |
| | | this.controllength = controllength; |
| | | } |
| | | |
| | | /** |
| | | * 获取 表单里显示的样式 |
| | | */ |
| | | public String getFormdisplaystyle (){ |
| | | return formdisplaystyle; |
| | | } |
| | | |
| | | /** |
| | | * 设置 表单里显示的样式 |
| | | */ |
| | | public void setFormdisplaystyle (String formdisplaystyle){ |
| | | this.formdisplaystyle = formdisplaystyle; |
| | | } |
| | | |
| | | /** |
| | | * 获取 表格里显示的样式 |
| | | */ |
| | | public String getTabledisplaystyle (){ |
| | | return tabledisplaystyle; |
| | | } |
| | | |
| | | /** |
| | | * 设置 表格里显示的样式 |
| | | */ |
| | | public void setTabledisplaystyle (String tabledisplaystyle){ |
| | | this.tabledisplaystyle = tabledisplaystyle; |
| | | } |
| | | |
| | | /** |
| | | * 获取 表单中超链接内容 |
| | | */ |
| | | public String getFormhref (){ |
| | | return formhref; |
| | | } |
| | | |
| | | /** |
| | | * 设置 表单中超链接内容 |
| | | */ |
| | | public void setFormhref (String formhref){ |
| | | this.formhref = formhref; |
| | | } |
| | | |
| | | /** |
| | | * 获取 表格中超链接内容 |
| | | */ |
| | | public String getTablehref (){ |
| | | return tablehref; |
| | | } |
| | | |
| | | /** |
| | | * 设置 表格中超链接内容 |
| | | */ |
| | | public void setTablehref (String tablehref){ |
| | | this.tablehref = tablehref; |
| | | } |
| | | |
| | | /** |
| | | * 获取 小数精度 |
| | | */ |
| | | public Integer getPrecisionlength (){ |
| | | return precisionlength; |
| | | } |
| | | |
| | | /** |
| | | * 设置 小数精度 |
| | | */ |
| | | public void setPrecisionlength (Integer precisionlength){ |
| | | this.precisionlength = precisionlength; |
| | | } |
| | | |
| | | /** |
| | | * 获取 小数刻度 |
| | | */ |
| | | public Integer getScalelength (){ |
| | | return scalelength; |
| | | } |
| | | |
| | | /** |
| | | * 设置 小数刻度 |
| | | */ |
| | | public void setScalelength (Integer scalelength){ |
| | | this.scalelength = scalelength; |
| | | } |
| | | |
| | | /** |
| | | * 获取 取值范围 |
| | | */ |
| | | public String getValuearea (){ |
| | | return valuearea; |
| | | } |
| | | |
| | | /** |
| | | * 设置 取值范围 |
| | | */ |
| | | public void setValuearea (String valuearea){ |
| | | this.valuearea = valuearea; |
| | | } |
| | | |
| | | /** |
| | | * 获取 时间格式 |
| | | */ |
| | | public String getCodedateformat (){ |
| | | return codedateformat; |
| | | } |
| | | |
| | | /** |
| | | * 设置 时间格式 |
| | | */ |
| | | public void setCodedateformat (String codedateformat){ |
| | | this.codedateformat = codedateformat; |
| | | } |
| | | |
| | | /** |
| | | * 获取 表格里显示调用的js |
| | | */ |
| | | public String getTabledisplayjs (){ |
| | | return tabledisplayjs; |
| | | } |
| | | |
| | | /** |
| | | * 设置 表格里显示调用的js |
| | | */ |
| | | public void setTabledisplayjs (String tabledisplayjs){ |
| | | this.tabledisplayjs = tabledisplayjs; |
| | | } |
| | | |
| | | /** |
| | | * 获取 是否显示多行文本 |
| | | */ |
| | | public String getTextareaflag (){ |
| | | return textareaflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 是否显示多行文本 |
| | | */ |
| | | public void setTextareaflag (String textareaflag){ |
| | | this.textareaflag = textareaflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 预览图 |
| | | */ |
| | | public String getImageflag (){ |
| | | return imageflag; |
| | | } |
| | | |
| | | /** |
| | | * 设置 预览图 |
| | | */ |
| | | public void setImageflag (String imageflag){ |
| | | this.imageflag = imageflag; |
| | | } |
| | | |
| | | /** |
| | | * 获取 默认值 |
| | | */ |
| | | public String getDefaultvalue (){ |
| | | return defaultvalue; |
| | | } |
| | | |
| | | /** |
| | | * 设置 默认值 |
| | | */ |
| | | public void setDefaultvalue (String defaultvalue){ |
| | | this.defaultvalue = defaultvalue; |
| | | } |
| | | |
| | | /** |
| | | * 获取 前缀 |
| | | */ |
| | | public String getPrefixvalue (){ |
| | | return prefixvalue; |
| | | } |
| | | |
| | | /** |
| | | * 设置 前缀 |
| | | */ |
| | | public void setPrefixvalue (String prefixvalue){ |
| | | this.prefixvalue = prefixvalue; |
| | | } |
| | | |
| | | /** |
| | | * 获取 后缀 |
| | | */ |
| | | public String getSuffixvalue (){ |
| | | return suffixvalue; |
| | | } |
| | | |
| | | /** |
| | | * 设置 后缀 |
| | | */ |
| | | public void setSuffixvalue (String suffixvalue){ |
| | | this.suffixvalue = suffixvalue; |
| | | } |
| | | |
| | | /** |
| | | * 获取 选择数据时过滤的属性 |
| | | */ |
| | | public String getFiltersourceattr (){ |
| | | return filtersourceattr; |
| | | } |
| | | |
| | | /** |
| | | * 设置 选择数据时过滤的属性 |
| | | */ |
| | | public void setFiltersourceattr (String filtersourceattr){ |
| | | this.filtersourceattr = filtersourceattr; |
| | | } |
| | | |
| | | /** |
| | | * 获取 选择数据时过滤的属性名称 |
| | | */ |
| | | public String getFiltersourceattrname (){ |
| | | return filtersourceattrname; |
| | | } |
| | | |
| | | /** |
| | | * 设置 选择数据时过滤的属性名称 |
| | | */ |
| | | public void setFiltersourceattrname (String filtersourceattrname){ |
| | | this.filtersourceattrname = filtersourceattrname; |
| | | } |
| | | |
| | | public Integer getAttrTableWidth() { |
| | | return attrTableWidth; |
| | | } |
| | | |
| | | public void setAttrTableWidth(Integer attrTableWidth) { |
| | | this.attrTableWidth = attrTableWidth; |
| | | } |
| | | |
| | | public String getReferConfig() { |
| | | return referConfig; |
| | | } |
| | | |
| | | public void setReferConfig(String referConfig) { |
| | | this.referConfig = referConfig; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "CodeClassifyTemplateAttrDTO{" + |
| | | "classifytemplateoid='" + classifytemplateoid + '\'' + |
| | | ", classifytemplateoidName='" + classifytemplateoidName + '\'' + |
| | | ", classifyattributeoid='" + classifyattributeoid + '\'' + |
| | | ", classifyattributeoidName='" + classifyattributeoidName + '\'' + |
| | | ", attributedatatype='" + attributedatatype + '\'' + |
| | | ", keyattrflag='" + keyattrflag + '\'' + |
| | | ", queryattrflag='" + queryattrflag + '\'' + |
| | | ", seniorqueryattrflag='" + seniorqueryattrflag + '\'' + |
| | | ", samerepeatattrflag='" + samerepeatattrflag + '\'' + |
| | | ", sortattrflag='" + sortattrflag + '\'' + |
| | | ", qrcodeflag='" + qrcodeflag + '\'' + |
| | | ", barcodeflag='" + barcodeflag + '\'' + |
| | | ", componentrule='" + componentrule + '\'' + |
| | | ", verifyrule='" + verifyrule + '\'' + |
| | | ", classifyinvokelevel='" + classifyinvokelevel + '\'' + |
| | | ", classifyinvokeattr='" + classifyinvokeattr + '\'' + |
| | | ", classifyinvokeattrname='" + classifyinvokeattrname + '\'' + |
| | | ", classifyinvokeeditflag='" + classifyinvokeeditflag + '\'' + |
| | | ", ordernum=" + ordernum + |
| | | ", formdisplayflag='" + formdisplayflag + '\'' + |
| | | ", tabledisplayflag='" + tabledisplayflag + '\'' + |
| | | ", attributegroup='" + attributegroup + '\'' + |
| | | ", enumString='" + enumString + '\'' + |
| | | ", enumid='" + enumid + '\'' + |
| | | ", enumname='" + enumname + '\'' + |
| | | ", enumeditflag='" + enumeditflag + '\'' + |
| | | ", referbtmid='" + referbtmid + '\'' + |
| | | ", referbtmname='" + referbtmname + '\'' + |
| | | ", referConfig='" + referConfig + '\'' + |
| | | ", requireflag='" + requireflag + '\'' + |
| | | ", readonlyflag='" + readonlyflag + '\'' + |
| | | ", controllength=" + controllength + |
| | | ", formdisplaystyle='" + formdisplaystyle + '\'' + |
| | | ", tabledisplaystyle='" + tabledisplaystyle + '\'' + |
| | | ", formhref='" + formhref + '\'' + |
| | | ", tablehref='" + tablehref + '\'' + |
| | | ", precisionlength=" + precisionlength + |
| | | ", scalelength=" + scalelength + |
| | | ", valuearea='" + valuearea + '\'' + |
| | | ", codedateformat='" + codedateformat + '\'' + |
| | | ", tabledisplayjs='" + tabledisplayjs + '\'' + |
| | | ", textareaflag='" + textareaflag + '\'' + |
| | | ", imageflag='" + imageflag + '\'' + |
| | | ", defaultvalue='" + defaultvalue + '\'' + |
| | | ", prefixvalue='" + prefixvalue + '\'' + |
| | | ", suffixvalue='" + suffixvalue + '\'' + |
| | | ", filtersourceattr='" + filtersourceattr + '\'' + |
| | | ", filtersourceattrname='" + filtersourceattrname + '\'' + |
| | | ", attrTableWidth=" + attrTableWidth + |
| | | "} " + super.toString(); |
| | | } |
| | | } |