ludc
2023-07-10 d9f90c95fe3a9730d255c97daff9fecce1929288
Source/UBCS/ubcs-service/ubcs-omd/src/main/java/com/vci/ubcs/omd/wrapper/BtmTypeAttributeWrapper.java
@@ -35,8 +35,6 @@
   public BtmTypeAttributeVO entityVO(BtmTypeAttribute entity) {
      BtmTypeAttributeVO vo = Objects.requireNonNull(BeanUtil.copy(entity, BtmTypeAttributeVO.class));
      // 在这里设置枚举显示值
      vo.setPrecisionLength(vo.getPrecisionLength() == -1 ? null : vo.getPrecisionLength());
      vo.setScaleLength(vo.getScaleLength() == -1 ? null : vo.getPrecisionLength());
      vo.setAttrDataTypeText(EnumCache.getValue("attributeType",vo.getAttrDataType()));
      return vo;
   }