|
@@ -16,12 +16,12 @@ import com.enteprise.industry_oveview.service.IIndustryOverviewService;
|
|
|
|
|
|
/**
|
|
/**
|
|
* industry_oveviewService业务层处理
|
|
* industry_oveviewService业务层处理
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @author ruoyi
|
|
* @author ruoyi
|
|
* @date 2024-11-11
|
|
* @date 2024-11-11
|
|
*/
|
|
*/
|
|
@Service
|
|
@Service
|
|
-public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
|
|
|
|
+public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
{
|
|
{
|
|
@Autowired
|
|
@Autowired
|
|
private IndustryOverviewMapper industryOverviewMapper;
|
|
private IndustryOverviewMapper industryOverviewMapper;
|
|
@@ -31,7 +31,7 @@ public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 查询industry_oveview
|
|
* 查询industry_oveview
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param id industry_oveview主键
|
|
* @param id industry_oveview主键
|
|
* @return industry_oveview
|
|
* @return industry_oveview
|
|
*/
|
|
*/
|
|
@@ -43,7 +43,7 @@ public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 查询industry_oveview列表
|
|
* 查询industry_oveview列表
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param industryOverview industry_oveview
|
|
* @param industryOverview industry_oveview
|
|
* @return industry_oveview
|
|
* @return industry_oveview
|
|
*/
|
|
*/
|
|
@@ -95,6 +95,21 @@ public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
|
+ public List<IndustryOverview> selectIndustryOverviewListYear(IndustryOverview industryOverview) {
|
|
|
|
+ List<IndustryOverview> list = new ArrayList<>();
|
|
|
|
+ List<Integer> years = new ArrayList<>();
|
|
|
|
+ List<IndustryOverview> industryOverviews = industryOverviewMapper.selectIndustryOverviewList(industryOverview);
|
|
|
|
+ IndustryOverview latestData = null;
|
|
|
|
+ for (IndustryOverview item : industryOverviews){
|
|
|
|
+ years.add(item.getYear());
|
|
|
|
+ latestData = item;
|
|
|
|
+ latestData.setYears(years);
|
|
|
|
+ }
|
|
|
|
+ list.add(latestData);
|
|
|
|
+ return list;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
public List<IndustryCount> selectIndustryCountList() {
|
|
public List<IndustryCount> selectIndustryCountList() {
|
|
//获取前十排名
|
|
//获取前十排名
|
|
List<IndustryCount> collect = industryOverviewMapper.selectIndustryCount().stream().limit(10).collect(Collectors.toList());
|
|
List<IndustryCount> collect = industryOverviewMapper.selectIndustryCount().stream().limit(10).collect(Collectors.toList());
|
|
@@ -120,7 +135,7 @@ public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 新增industry_oveview
|
|
* 新增industry_oveview
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param industryOverview industry_oveview
|
|
* @param industryOverview industry_oveview
|
|
* @return 结果
|
|
* @return 结果
|
|
*/
|
|
*/
|
|
@@ -132,7 +147,7 @@ public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 修改industry_oveview
|
|
* 修改industry_oveview
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param industryOverview industry_oveview
|
|
* @param industryOverview industry_oveview
|
|
* @return 结果
|
|
* @return 结果
|
|
*/
|
|
*/
|
|
@@ -144,7 +159,7 @@ public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 批量删除industry_oveview
|
|
* 批量删除industry_oveview
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param ids 需要删除的industry_oveview主键
|
|
* @param ids 需要删除的industry_oveview主键
|
|
* @return 结果
|
|
* @return 结果
|
|
*/
|
|
*/
|
|
@@ -156,7 +171,7 @@ public class IndustryOverviewServiceImpl implements IIndustryOverviewService
|
|
|
|
|
|
/**
|
|
/**
|
|
* 删除industry_oveview信息
|
|
* 删除industry_oveview信息
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @param id industry_oveview主键
|
|
* @param id industry_oveview主键
|
|
* @return 结果
|
|
* @return 结果
|
|
*/
|
|
*/
|