|
@@ -40,6 +40,14 @@ public class TDataSizeInfoWarehouseUnitsServiceImpl extends ServiceImpl<TDataSiz
|
|
|
private TCatalogSupplyApplyTop5Mapper tCatalogSupplyApplyTop5Mapper;
|
|
|
@Resource
|
|
|
private TResourceCatalogNumMapper tResourceCatalogNumMapper;
|
|
|
+ @Resource
|
|
|
+ private TDatabaseConstructionMapper tDatabaseConstructionMapper;
|
|
|
+ @Resource
|
|
|
+ private TGeographicDatabaseMapper tGeographicDatabaseMapper;
|
|
|
+ @Resource
|
|
|
+ private TDataSourceMapper tDataSourceMapper;
|
|
|
+ @Resource
|
|
|
+ private TPhotoDatabaseDataMapper tPhotoDatabaseDataMapper;
|
|
|
|
|
|
@Override
|
|
|
public HttpRespMsg getCenterData() {
|
|
@@ -64,4 +72,18 @@ public class TDataSizeInfoWarehouseUnitsServiceImpl extends ServiceImpl<TDataSiz
|
|
|
msg.data = map;
|
|
|
return msg;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public HttpRespMsg fiveMainStorehouses() {
|
|
|
+ HttpRespMsg msg = new HttpRespMsg();
|
|
|
+ Map<String,Object> map = new HashMap<>();
|
|
|
+ map.put("databaseConstruction",tDatabaseConstructionMapper.selectList(new QueryWrapper<TDatabaseConstruction>()));
|
|
|
+ map.put("geographicDatabase",tGeographicDatabaseMapper.selectList(new QueryWrapper<TGeographicDatabase>()));
|
|
|
+ map.put("dataSource",tDataSourceMapper.selectList(new QueryWrapper<TDataSource>()));
|
|
|
+ map.put("photoDatabaseData",tPhotoDatabaseDataMapper.selectList(new QueryWrapper<TPhotoDatabaseData>()));
|
|
|
+ msg.data = map;
|
|
|
+ return msg;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|