Commit 865cddda authored by 375138141's avatar 375138141

查询dtos

parent 4210cda4
......@@ -31,22 +31,12 @@ public class MarketAnalysisController {
}
/*
* 资质等级按照大类、等级类型分组
* 资质等级按照行业、等级类型分组
*/
@RequestMapping("/certGroupByCategoryAndLevel")
public AjaxResult certGroupByCategoryAndLevel() {
@RequestMapping("/certGroupByMajorAndLevel")
public AjaxResult certGroupByMajorAndLevel() {
return marketAnalysisService.certGroupByCategoryAndLevel();
}
/*
* 资质等级按照小类、等级类型分组
*/
@RequestMapping("/certGroupByTypeAndLevel")
public AjaxResult certGroupByTypeAndLevel() {
return marketAnalysisService.certGroupByTypeAndLevel();
return marketAnalysisService.certGroupByMajorAndLevel();
}
......@@ -56,6 +46,6 @@ public class MarketAnalysisController {
@RequestMapping("/certGroupByCategoryProvinceLevel")
public AjaxResult certGroupByCategoryProvinceLevel() {
return marketAnalysisService.certGroupByCategoryProvinceLevel();
return marketAnalysisService.certGroupByMajorProvinceLevel();
}
}
......@@ -11,9 +11,7 @@ public interface MarketAnalysisService {
AjaxResult areaGroupByProvince();
AjaxResult certGroupByTypeAndLevel();
AjaxResult certGroupByMajorAndLevel();
AjaxResult certGroupByCategoryAndLevel();
AjaxResult certGroupByCategoryProvinceLevel();
AjaxResult certGroupByMajorProvinceLevel();
}
......@@ -29,18 +29,15 @@ public class MarketAnalysisServiceImpl implements MarketAnalysisService {
}
@Override
public AjaxResult certGroupByTypeAndLevel() {
return null;
public AjaxResult certGroupByMajorAndLevel() {
Map<String, Object> map = dskOpenApiUtil.requestBody("/marketAnalysis/certGroupByMajorAndLevel", null);
return BeanUtil.toBean(map, AjaxResult.class);
}
@Override
public AjaxResult certGroupByCategoryAndLevel() {
return null;
}
@Override
public AjaxResult certGroupByCategoryProvinceLevel() {
return null;
public AjaxResult certGroupByMajorProvinceLevel() {
Map<String, Object> map = dskOpenApiUtil.requestBody("/marketAnalysis/certGroupByMajorProvinceLevel", null);
return BeanUtil.toBean(map, AjaxResult.class);
}
}
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