Commit a13e95b9 authored by wujiang's avatar wujiang

修改安全上传

parent b73bc0b7
......@@ -300,10 +300,15 @@ public class PreparationMoneyServiceImpl extends BaseService<PreparationMoneyDto
ids.add(documentStation.getStationId());
}
//获取所有电站Bom,分组合并,暂时不相加
List<DesignInformation> li= new ArrayList<>();
if(!ids.isEmpty())
{
QueryWrapper<DesignInformation> designInformationQueryWrapper = new QueryWrapper<>();
designInformationQueryWrapper.in("peasant_household_id", ids);
li = designInformationMapper.selectList(designInformationQueryWrapper);
}
QueryWrapper<DesignInformation> designInformationQueryWrapper = new QueryWrapper<>();
designInformationQueryWrapper.in("peasant_household_id", ids);
List<DesignInformation> li = designInformationMapper.selectList(designInformationQueryWrapper);
DesignInformation designInformation = new DesignInformation();
//组件
List<Object> assembly = new ArrayList<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment