|
@@ -13,10 +13,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.project.common.utils.StringUtils;
|
|
import com.project.common.utils.StringUtils;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
|
-import java.util.HashMap;
|
|
|
|
-import java.util.List;
|
|
|
|
-import java.util.Map;
|
|
|
|
|
|
+import java.util.*;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 工程项目Service业务层处理
|
|
* 工程项目Service业务层处理
|
|
@@ -195,7 +192,8 @@ public class LargeProjectServiceImpl extends ServiceImpl<LargeProjectMapper, Lar
|
|
return largeProjectMapper.getProjectNumThisWeek(appOrg);
|
|
return largeProjectMapper.getProjectNumThisWeek(appOrg);
|
|
}
|
|
}
|
|
|
|
|
|
- public Map<String, Object> getProjectNumZ(List<String> appOrg){
|
|
|
|
|
|
+ public Map<String, Object> getProjectNumZ(){
|
|
|
|
+ List<String> appOrg = new ArrayList<>(Arrays.asList("1A003", "1B001", "1C001", "1D001", "1E001", "1F001", "1K001", "1L001", "1H001", "1M001", "1J001"));
|
|
List<LargeProject> list = largeProjectMapper.getProjectNumZ(appOrg);
|
|
List<LargeProject> list = largeProjectMapper.getProjectNumZ(appOrg);
|
|
Map<String, Object> map = new HashMap<>();
|
|
Map<String, Object> map = new HashMap<>();
|
|
List<Integer> list1 = new ArrayList<>();
|
|
List<Integer> list1 = new ArrayList<>();
|