上传岗位添加新接口以及处理上传数据等。

This commit is contained in:
chenyanchang
2026-06-08 23:42:00 +08:00
parent 715cc55a8c
commit cf858f7bf5
5 changed files with 87 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
package com.ruoyi.cms.mapper;
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import java.util.List;
import java.util.Map;
@@ -64,4 +65,8 @@ public interface JobMapper extends BaseMapper<Job>
Integer getTotals(Job job);
Long updateReviewStatus(@Param("jobId") Long jobId, @Param("reviewStatus") String reviewStatus);
//删除岗位
@InterceptorIgnore(blockAttack = "true")
Long delRowWork();
}