Commit 5fccf578 authored by lcl's avatar lcl

u

parent 9c0a8459
......@@ -64,4 +64,12 @@ public class JskCombineInfoController extends BaseController {
public TableDataInfo menberCertificateList(@RequestBody JskCombineCertificateDto dto) throws Exception {
return baseService.menberCertificateList(dto);
}
/**
* 集团资质分组统计
*/
@PostMapping("/group/certificateCount")
public R groupCertificateCount(@RequestBody JskCombineSearchDto dto) throws Exception {
return baseService.groupCertificateCount(dto);
}
}
......@@ -84,6 +84,10 @@ public class JskCombineSearchDto implements Serializable {
* 项目类型
*/
private List<String> projectTypes;
/**
* 资质类型
*/
private Integer qualificationType;
/**
* 页码
......
......@@ -83,4 +83,9 @@ public class JskCombineInfoService {
}
return dskOpenApiUtil.responsePage(map);
}
public R groupCertificateCount(JskCombineSearchDto dto) {
Map<String, Object> map = dskOpenApiUtil.requestBody("/operate/combine/group/certificateCount", BeanUtil.beanToMap(dto, false, false));
return BeanUtil.toBean(map, R.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