无关风月
6 天以前 acbe0c6c601ff1368002d701631a43a2c00b61f5
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;
    }
}