Commit 2b216453 authored by liuChang's avatar liuChang

咨询机构

parent 81c53462
......@@ -89,4 +89,16 @@ public class CompanySearchController {
public AjaxResult zjyjCertStandard(@RequestBody JSONObject object) {
return opportunityRadarService.zjyjCertStandard(object);
}
/*
* 咨询机构
*/
@PostMapping("/consult/page")
public AjaxResult consultPage(@RequestBody JSONObject object) {
ComposeQueryDto compose = JSONObject.parseObject(object.toJSONString(), ComposeQueryDto.class);
if (PageQueryLimit.pageLimit(compose.getPage())){
return AjaxResult.error("翻页已达到上限");
}
return opportunityRadarService.consultPage(object);
}
}
......@@ -232,4 +232,9 @@ public class BusinessOpportunityRadarService {
Map<String, Object> map = dskOpenApiUtil.requestBody("/nationzj/zjyj/cert/standard", object);
return BeanUtil.toBean(map, AjaxResult.class);
}
public AjaxResult consultPage(JSONObject object) {
Map<String, Object> map = dskOpenApiUtil.requestBody("/nationzj/zjyj/consult/enterprise", object);
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