xiejun
2023-08-31 e9a2887747340f87227fb926a725e676e88e5e05
Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/vo/pagemodel/CodeClassifyTemplateAttrVO.java
@@ -1,5 +1,6 @@
package com.vci.ubcs.code.vo.pagemodel;
import com.vci.ubcs.starter.revision.model.BaseModel;
import lombok.Data;
/**
@@ -9,7 +10,7 @@
 * @date 2022-01-24
 */
@Data
public class CodeClassifyTemplateAttrVO extends BaseModelVO {
public class CodeClassifyTemplateAttrVO extends BaseModel {
   /**
     * 禁止修改这个值
@@ -290,5 +291,70 @@
    * 级联查询属性
    */
   private String parentQueryAttr;
   /**
    * 输入提示
    */
   private String inputTip;
   @Override
   public String toString() {
      return "CodeClassifyTemplateAttrVO{" +
         "classifyTemplateOid='" + classifyTemplateOid + '\'' +
         ", classifyTemplateOidName='" + classifyTemplateOidName + '\'' +
         ", classifyAttributeOid='" + classifyAttributeOid + '\'' +
         ", classifyAttributeOidName='" + classifyAttributeOidName + '\'' +
         ", attributeDataType='" + attributeDataType + '\'' +
         ", attributeDataTypeText='" + attributeDataTypeText + '\'' +
         ", 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 + '\'' +
         ", 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 + '\'' +
         ", enumString='" + enumString + '\'' +
         ", attrTableWidth=" + attrTableWidth +
         ", explain='" + explain + '\'' +
         ", libraryIdentification='" + libraryIdentification + '\'' +
         ", parentCode='" + parentCode + '\'' +
         ", parentName='" + parentName + '\'' +
         ", inputTip='" + inputTip + '\'' +
         ", parentQueryAttr='" + parentQueryAttr + '\'' +
         '}';
   }
}