|
@@ -5,8 +5,8 @@ import com.gyee.power.fitting.common.config.GyeeConfig;
|
|
|
import com.gyee.power.fitting.common.result.JsonResult;
|
|
|
import com.gyee.power.fitting.common.result.ResultCode;
|
|
|
import com.gyee.power.fitting.common.util.FileUtil;
|
|
|
-import com.gyee.power.fitting.model.Powerfittinganalysis;
|
|
|
-import com.gyee.power.fitting.service.PowerfittinganalysisService;
|
|
|
+import com.gyee.power.fitting.model.ProEconPowerFittingAnalySis;
|
|
|
+import com.gyee.power.fitting.service.ProEconPowerFittingAnalySisService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
@@ -26,7 +26,7 @@ public class DateOptionController {
|
|
|
@Autowired
|
|
|
private GyeeConfig gyeeConfig;
|
|
|
@Autowired
|
|
|
- private PowerfittinganalysisService powerfittinganalysisService;
|
|
|
+ private ProEconPowerFittingAnalySisService powerfittinganalysisService;
|
|
|
|
|
|
|
|
|
/** 删除
|
|
@@ -48,7 +48,7 @@ public class DateOptionController {
|
|
|
if (ids.isEmpty())
|
|
|
return;
|
|
|
|
|
|
- List<Powerfittinganalysis> objs = powerfittinganalysisService.selectListByIds(ids);
|
|
|
+ List<ProEconPowerFittingAnalySis> objs = powerfittinganalysisService.selectListByIds(ids);
|
|
|
List<String> list = objs.stream().map(p -> p.getPath()).collect(Collectors.toList());
|
|
|
List<File> files = list.stream().map(File::new).collect(Collectors.toList());
|
|
|
|