1.company添加isAbnormal 字段

2.岗位分析-添加educationSalary方法
This commit is contained in:
sh
2025-10-09 18:42:03 +08:00
parent 22ffa7db9c
commit 10cf0369c4
5 changed files with 119 additions and 5 deletions

View File

@@ -85,4 +85,19 @@ public class StaticsController extends BaseController {
Map<String,Object> result = service.education(staticsquery);
return success(result);
}
//分学历-分薪资
@GetMapping("/educationSalaryGen")
public AjaxResult educationSalaryGen()
{
service.educationSalaryGen();
return success();
}
@GetMapping("/educationSalary")
public AjaxResult educationSalary(Staticsquery staticsquery)
{
Map<String,Object> result = service.educationSalary(staticsquery);
return success(result);
}
}