|
@@ -74,11 +74,8 @@ public class DemInspectListServiceImpl extends AbstractCrudService<DemInspectLis
|
|
|
|
|
|
if(CollectionUtils.isNotEmpty(comoanyList)){
|
|
|
List<String> companyList = new ArrayList<>();
|
|
|
- for(int i=0;i<comoanyList.size();i++){
|
|
|
- companyList.add(comoanyList.get(i).getCompanyId());
|
|
|
- }
|
|
|
for(int j=0;j<companyIdList.size();j++){
|
|
|
- companyList.add(comoanyList.get(j).getCompanyId());
|
|
|
+ companyList.add(companyIdList.get(j).getCompanyId());
|
|
|
}
|
|
|
|
|
|
LambdaQueryWrapper<DemInspectList> QueryWrapper1 = Wrappers.lambdaQuery();
|