ruoyi-system/src/main/java/com/ruoyi/system/service/impl/AssetTypeServiceImpl.java
@@ -536,4 +536,14 @@ return list; } @Override public String getAssetTypeNameById(Integer assetTypeId) { if (assetTypeId != null) { AssetType assetType = this.getById(assetTypeId); if (assetType != null) { return assetType.getTypeName(); } } return null; } }