lihang
2023-07-10 dd2cbe9c6f7360d0f50da4e5f0fc506ad3915d8b
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;
   }