From 4fedbed9949c6160dcfa216d6660bd3c625f7bce Mon Sep 17 00:00:00 2001 From: liding <756868258@qq.com> Date: 星期三, 25 六月 2025 11:49:55 +0800 Subject: [PATCH] 优化 --- main-business/src/main/java/com/ruoyi/business/service/impl/ProductionMasterServiceImpl.java | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/main-business/src/main/java/com/ruoyi/business/service/impl/ProductionMasterServiceImpl.java b/main-business/src/main/java/com/ruoyi/business/service/impl/ProductionMasterServiceImpl.java index 4d3b647..bb958f0 100644 --- a/main-business/src/main/java/com/ruoyi/business/service/impl/ProductionMasterServiceImpl.java +++ b/main-business/src/main/java/com/ruoyi/business/service/impl/ProductionMasterServiceImpl.java @@ -77,7 +77,6 @@ IPage<ProductionMasterDto> dtoPage = new Page<>(); BeanUtils.copyProperties(entityPage, dtoPage, "records"); dtoPage.setRecords(dtoList); - return dtoPage; } @@ -220,7 +219,6 @@ master.setLaborCost(totalLabor); master.setEnergyConsumptionCost(totalEnergy); master.setEquipmentDepreciation(totalDepreciation); - master.setCoal(coalInfos.stream().map(CoalInfo::getCoal).collect(Collectors.joining(","))); master.setCoalId(coalIds.stream().map(String::valueOf).collect(Collectors.joining(","))); return master; -- Gitblit v1.9.3