|
|
@@ -25,6 +25,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
@@ -33,6 +34,7 @@ import java.util.concurrent.CompletableFuture;
|
|
|
import java.util.concurrent.ExecutionException;
|
|
|
import java.util.concurrent.ExecutorService;
|
|
|
import java.util.concurrent.Executors;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -88,6 +90,18 @@ public class OfferDataServiceImpl implements OfferDataService {
|
|
|
return map;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<String> getPreAssignedCodeList() {
|
|
|
+ List<String> list = new ArrayList<>();
|
|
|
+ List<Map<String,String>> preAssignCodeList = projectImmobileCodeMapper.selectPreAssignCodeList(20,0);
|
|
|
+ if(CollectionUtils.isNotEmpty(preAssignCodeList)){
|
|
|
+ list = preAssignCodeList.stream().map(s->s.get("pre_assign_code")).collect(Collectors.toList());
|
|
|
+ }
|
|
|
+ return list;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 获取 1.项目与土地供应,两个表进行关联。
|
|
|
* 并且为上链的,并且不动产单元号不经存在的数据。
|