添加功能

This commit is contained in:
马宝龙
2026-06-27 00:29:56 +08:00
parent e17b0ab895
commit 641942129f
23 changed files with 360 additions and 1 deletions

View File

@@ -109,4 +109,15 @@ public class AnalysisJobDemandTreadController {
public AjaxResult skillKeyword(@RequestBody QueryParamDto dto) {
return AjaxResult.success(analysisJobDemandTreadService.skillKeyword(dto));
}
/**
* 热力图
*
* @param dto 查询参数
* @return 热力图列表
*/
@PostMapping("/heatmap")
public AjaxResult heatmap(@RequestBody QueryParamDto dto) {
return AjaxResult.success(analysisJobDemandTreadService.heatmap(dto));
}
}