|
@@ -66,6 +66,8 @@ public class AppSceneService {
|
|
|
ITmContractorNumService tmContractorNumService;
|
|
|
@Autowired
|
|
|
LaserService laserService;
|
|
|
+ @Autowired
|
|
|
+ ISceneCopyLogService sceneCopyLogService;
|
|
|
|
|
|
@Value("${fyun.host}")
|
|
|
private String ossHost;
|
|
@@ -109,7 +111,11 @@ public class AppSceneService {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- log.info("sqlparam:{}",param);
|
|
|
+ List<SceneCopyLog> list = sceneCopyLogService.list();
|
|
|
+ if(!list.isEmpty()){
|
|
|
+ List<String> copyNumList = list.stream().map(SceneCopyLog::getNewNum).collect(Collectors.toList());
|
|
|
+ param.setCopyNumList(copyNumList);
|
|
|
+ }
|
|
|
Page<AppSceneVo> page = scenePlusMapper.pageList(new Page<>(param.getPageNum(),param.getPageSize()),param);
|
|
|
List<String> numList = page.getRecords().stream().map(AppSceneVo::getNum).collect(Collectors.toList());
|
|
|
|