Browse Source

app-扫码删除接口调整

liao-sea 9 months ago
parent
commit
a6491caed0
1 changed files with 8 additions and 1 deletions
  1. 8 1
      src/main/java/com/hz/employmentsite/config/WebConfiguration.java

+ 8 - 1
src/main/java/com/hz/employmentsite/config/WebConfiguration.java

@@ -75,13 +75,20 @@ public class WebConfiguration implements WebMvcConfigurer {
         excludePath.add("/api/companyService/company/getCompanyByID");//查询单条企业信息数据
         excludePath.add("/api/companyService/company/getFirmNameLikeList");//查询所有企业信息
         excludePath.add("/api/companyService/post/getPostByID");//查询单条岗位信息数据
-        excludePath.add("/api/companyService/post/getList");//查询某企业所有 岗位信息(分页)
+        excludePath.add("/api/companyService/post/getList");//查询某企业所有岗位信息(分页)
+        excludePath.add("/api/companyService/post/delete");//删除某企业某岗位信息
+
         excludePath.add("/api/jobUserService/experience/getById"); //获取单条工作经验
         excludePath.add("/api/jobUserService/experience/getListByJobUserID");//查询某求职人员所有工作经验(分页)
         excludePath.add("/api/jobUserService/education/getById"); //获取单条教育经历
         excludePath.add("/api/jobUserService/education/getListByJobUserID");//查询某求职人员所有教育经验(分页)
         excludePath.add("/api/jobUserService/jobHunt/get"); //获取单条求职意向
         excludePath.add("/api/jobUserService/jobHunt/getList");//查询某求职人员所有求职意向(分页)
+
+        excludePath.add("/api/jobUserService/experience/deleteExperience");//删除某求职人员单条教育经历
+        excludePath.add("/api/jobUserService/education/deleteEducation");//删除某求职人员单条教育经历
+        excludePath.add("/api/jobUserService/jobHunt/delete");//删除某求职人员单条求职意向
+
         excludePath.add("/api/user/getUserInfo");//查询当前登录人信息
         excludePath.add("/api/system/dictionary/getDictionaryItemByCodeList");//查询相关字典信息
         excludePath.add("/api/system/area/getCityList");//查询相关市区信息