|
@@ -15,6 +15,7 @@ import com.tofly.dataImport.mapper.FileSourceMapper;
|
|
|
import com.tofly.dataImport.mapper.ScanMapper;
|
|
|
import com.tofly.dataImport.service.*;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.data.redis.core.ValueOperations;
|
|
|
import org.springframework.http.HttpMethod;
|
|
|
import org.springframework.http.MediaType;
|
|
@@ -29,6 +30,7 @@ import java.util.*;
|
|
|
|
|
|
@Service
|
|
|
@AllArgsConstructor
|
|
|
+@Slf4j
|
|
|
public class DataMergeServiceImpl implements DataMergeService {
|
|
|
private ScanMapper scanMapper;
|
|
|
private TdtechService tdtechService;
|
|
@@ -46,7 +48,8 @@ public class DataMergeServiceImpl implements DataMergeService {
|
|
|
private final ProcedureNewService procedureNewService;
|
|
|
private final PsnodeService psnodeService;
|
|
|
private final PspipeService pspipeService;
|
|
|
- private final FileSourceMapper fileSourceMapper;
|
|
|
+ private final FileSourceMapper fileSourceMapper;
|
|
|
+ private final FileSourceService fileSourceService;
|
|
|
private final UserService userService;
|
|
|
private final NewpsnodeService newpsnodeService;
|
|
|
private final NewpspipeService newpspipeService;
|
|
@@ -57,6 +60,7 @@ public class DataMergeServiceImpl implements DataMergeService {
|
|
|
|
|
|
private final ScanService scanService;
|
|
|
|
|
|
+
|
|
|
@Resource(name = "sxgkRestTemplate")
|
|
|
private RestTemplate restTemplate;
|
|
|
|
|
@@ -73,13 +77,13 @@ public class DataMergeServiceImpl implements DataMergeService {
|
|
|
page.setSize(1000);
|
|
|
String conditionSql=null;
|
|
|
if(StringUtils.isNotBlank(prjId)){
|
|
|
- conditionSql = "select remarks from tf_ywpn_psnode_w where remarks is not null and prj_id="+prjId+"\n" +
|
|
|
+ conditionSql = "select hb_id from tf_ywpn_psnode_w where hb_id is not null and prj_id="+prjId+"\n" +
|
|
|
"union \n" +
|
|
|
"select remarks from tf_ywpn_pspipe_w where remarks is not null and prj_id="+prjId+"\n";
|
|
|
}else{
|
|
|
- conditionSql = "select remarks from tf_ywpn_psnode_w where remarks is not null\n" +
|
|
|
+ conditionSql = "select remarks from tf_ywpn_psnode_w where hb_id is not null\n" +
|
|
|
"union \n" +
|
|
|
- "select remarks from tf_ywpn_pspipe_w where remarks is not null \n";
|
|
|
+ "select hb_id from tf_ywpn_pspipe_w where hb_id is not null \n";
|
|
|
}
|
|
|
|
|
|
Page<Scan> page1 = scanMapper.selectPage(page, Wrappers.<Scan>lambdaQuery()
|
|
@@ -168,6 +172,19 @@ public class DataMergeServiceImpl implements DataMergeService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void pictureDownLoadTemp() {
|
|
|
+
|
|
|
+ final List<FileSource> list = fileSourceService.list();
|
|
|
+ list.forEach(li->{
|
|
|
+ final String s = downloadRemoteFile(li.getUrl());
|
|
|
+ li.setLocalUrl(s);
|
|
|
+ log.info("图片下载:"+li.getId());
|
|
|
+ fileSourceService.updateById(li);
|
|
|
+ });
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
private void fillScan(List<Scan> records) {
|
|
|
List<Newpsnodefile> newpsnodefileList = new ArrayList<>();
|
|
|
List<Newpspipefile> newpspipefileList = new ArrayList<>();
|
|
@@ -426,7 +443,7 @@ public class DataMergeServiceImpl implements DataMergeService {
|
|
|
|
|
|
List<String> list =
|
|
|
psnodeService.listObjs(Wrappers.<Psnode>lambdaQuery()
|
|
|
- .select(Psnode::getRemarks).isNotNull(Psnode::getRemarks),n->(String)n);
|
|
|
+ .select(Psnode::getRemarks).isNotNull(Psnode::getHbId),n->(String)n);
|
|
|
list.forEach(e->{
|
|
|
valueOperations.getOperations().opsForHash().put(HB_NODE_FILE_HASH,e,"node");
|
|
|
});
|
|
@@ -435,7 +452,7 @@ public class DataMergeServiceImpl implements DataMergeService {
|
|
|
|
|
|
List<String> list2 =
|
|
|
pspipeService.listObjs(Wrappers.<Pspipe>lambdaQuery()
|
|
|
- .select(Pspipe::getRemarks).isNotNull(Pspipe::getRemarks),n->(String)n);
|
|
|
+ .select(Pspipe::getRemarks).isNotNull(Pspipe::getHbId),n->(String)n);
|
|
|
list2.forEach(e->{
|
|
|
valueOperations.getOperations().opsForHash().put(HB_NODE_FILE_HASH,e,"pipe");
|
|
|
});
|