面试功能开发
This commit is contained in:
@@ -0,0 +1,140 @@
|
||||
package com.ruoyi.cms.config;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.context.event.ApplicationReadyEvent;
|
||||
import org.springframework.context.event.EventListener;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import javax.sql.DataSource;
|
||||
import java.sql.Connection;
|
||||
import java.sql.PreparedStatement;
|
||||
import java.sql.ResultSet;
|
||||
import java.sql.Statement;
|
||||
|
||||
/**
|
||||
* 面试菜单权限自动迁移
|
||||
* 应用启动后自动检查并添加面试列表菜单及按钮权限到 sys_menu 和 sys_role_menu 表
|
||||
*/
|
||||
@Slf4j
|
||||
@Component
|
||||
public class InterviewMenuMigration {
|
||||
|
||||
@Autowired
|
||||
private DataSource dataSource;
|
||||
|
||||
@EventListener(ApplicationReadyEvent.class)
|
||||
public void migrate() {
|
||||
log.info("开始检查面试菜单权限...");
|
||||
try (Connection conn = dataSource.getConnection()) {
|
||||
// Step 1: 查找岗位管理目录的 menu_id
|
||||
Long parentId = null;
|
||||
try (Statement stmt = conn.createStatement();
|
||||
ResultSet rs = stmt.executeQuery(
|
||||
"SELECT menu_id FROM sys_menu WHERE path = 'management' AND menu_type = 'M' LIMIT 1")) {
|
||||
if (rs.next()) {
|
||||
parentId = rs.getLong("menu_id");
|
||||
}
|
||||
}
|
||||
|
||||
if (parentId == null) {
|
||||
log.warn("未找到 management 目录菜单,跳过面试菜单迁移");
|
||||
return;
|
||||
}
|
||||
|
||||
log.info("找到 management 目录菜单,parent_id={}", parentId);
|
||||
|
||||
// Step 2: 插入面试列表菜单(幂等)
|
||||
Long menuId = insertMenuIfNotExists(conn, 2100L, "面试列表", parentId, 10,
|
||||
"interview-list", "Management/InterviewList", "InterviewList",
|
||||
"C", "cms:interview:list", "message");
|
||||
|
||||
if (menuId == null) {
|
||||
log.warn("面试列表菜单插入失败(可能已存在但 parent_id 不同)");
|
||||
return;
|
||||
}
|
||||
|
||||
// Step 3: 插入按钮权限
|
||||
insertMenuIfNotExists(conn, 2101L, "面试查询", menuId, 1,
|
||||
"", "", "", "F", "cms:interview:query", "#");
|
||||
insertMenuIfNotExists(conn, 2102L, "面试新增", menuId, 2,
|
||||
"", "", "", "F", "cms:interview:add", "#");
|
||||
insertMenuIfNotExists(conn, 2103L, "面试修改", menuId, 3,
|
||||
"", "", "", "F", "cms:interview:edit", "#");
|
||||
insertMenuIfNotExists(conn, 2104L, "面试删除", menuId, 4,
|
||||
"", "", "", "F", "cms:interview:remove", "#");
|
||||
|
||||
// Step 4: 将新菜单赋给所有非管理员角色
|
||||
try (Statement stmt = conn.createStatement()) {
|
||||
stmt.execute(
|
||||
"INSERT INTO sys_role_menu (role_id, menu_id) " +
|
||||
"SELECT r.role_id, " + menuId + " FROM sys_role r " +
|
||||
"WHERE r.role_key != 'admin' " +
|
||||
"AND NOT EXISTS (SELECT 1 FROM sys_role_menu rm WHERE rm.role_id = r.role_id AND rm.menu_id = " + menuId + ")");
|
||||
} catch (Exception e) {
|
||||
log.debug("角色菜单关联已存在或插入失败: {}", e.getMessage());
|
||||
}
|
||||
|
||||
// 按钮也赋给角色
|
||||
for (long btnId : new long[]{2101L, 2102L, 2103L, 2104L}) {
|
||||
try (Statement stmt = conn.createStatement()) {
|
||||
stmt.execute(
|
||||
"INSERT INTO sys_role_menu (role_id, menu_id) " +
|
||||
"SELECT r.role_id, " + btnId + " FROM sys_role r " +
|
||||
"WHERE r.role_key != 'admin' " +
|
||||
"AND NOT EXISTS (SELECT 1 FROM sys_role_menu rm WHERE rm.role_id = r.role_id AND rm.menu_id = " + btnId + ")");
|
||||
} catch (Exception e) {
|
||||
log.debug("按钮角色关联已存在: {}", e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
log.info("面试菜单权限迁移完成");
|
||||
} catch (Exception e) {
|
||||
log.error("面试菜单迁移失败: {}", e.getMessage(), e);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 幂等插入菜单记录
|
||||
*/
|
||||
private Long insertMenuIfNotExists(Connection conn, Long menuId, String menuName,
|
||||
Long parentId, int orderNum, String path,
|
||||
String component, String routeName,
|
||||
String menuType, String perms, String icon) {
|
||||
try {
|
||||
// 检查是否已存在
|
||||
try (PreparedStatement ps = conn.prepareStatement(
|
||||
"SELECT 1 FROM sys_menu WHERE menu_id = ?")) {
|
||||
ps.setLong(1, menuId);
|
||||
try (ResultSet rs = ps.executeQuery()) {
|
||||
if (rs.next()) {
|
||||
log.debug("菜单已存在: {} (id={})", menuName, menuId);
|
||||
return menuId;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 插入新菜单
|
||||
try (PreparedStatement ps = conn.prepareStatement(
|
||||
"INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time) " +
|
||||
"VALUES (?, ?, ?, ?, ?, ?, '', ?, 1, 0, ?, '0', '0', ?, ?, 'admin', CURRENT_TIMESTAMP)")) {
|
||||
ps.setLong(1, menuId);
|
||||
ps.setString(2, menuName);
|
||||
ps.setLong(3, parentId);
|
||||
ps.setInt(4, orderNum);
|
||||
ps.setString(5, path);
|
||||
ps.setString(6, component);
|
||||
ps.setString(7, routeName);
|
||||
ps.setString(8, menuType);
|
||||
ps.setString(9, perms);
|
||||
ps.setString(10, icon);
|
||||
ps.executeUpdate();
|
||||
log.info("菜单创建成功: {} (id={}, perms={})", menuName, menuId, perms);
|
||||
return menuId;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.warn("菜单创建失败: {} (id={}), error={}", menuName, menuId, e.getMessage());
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -12,6 +12,8 @@ import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import java.io.BufferedReader;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
@@ -67,7 +69,32 @@ public class AppInterviewController extends BaseController {
|
||||
*/
|
||||
@ApiOperation("更新面试邀约状态")
|
||||
@PutMapping("/status/{id}")
|
||||
public AjaxResult updateStatus(@PathVariable Long id, @RequestParam String status){
|
||||
public AjaxResult updateStatus(@PathVariable Long id, HttpServletRequest request) {
|
||||
String status = request.getParameter("status");
|
||||
// 如果 URL 参数没有,尝试从 JSON body 中读取
|
||||
if (status == null || status.isEmpty()) {
|
||||
try {
|
||||
BufferedReader reader = request.getReader();
|
||||
StringBuilder sb = new StringBuilder();
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
sb.append(line);
|
||||
}
|
||||
String body = sb.toString();
|
||||
if (body != null && !body.isEmpty()) {
|
||||
// 简单解析 JSON: {"status": "accepted"}
|
||||
status = body.replaceAll(".*\"status\"\\s*:\\s*\"([^\"]+)\".*", "$1");
|
||||
if (status.equals(body)) {
|
||||
status = null;
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
// ignore body read errors
|
||||
}
|
||||
}
|
||||
if (status == null || status.isEmpty()) {
|
||||
return AjaxResult.error("状态参数不能为空");
|
||||
}
|
||||
int rows = interviewInvitationService.updateInterviewStatus(id, status);
|
||||
if (rows > 0 && "accepted".equals(status)) {
|
||||
// 接受时返回面试官联系方式,供前端弹窗展示
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.ruoyi.cms.controller.cms;
|
||||
|
||||
import com.ruoyi.cms.domain.InterviewInvitation;
|
||||
import com.ruoyi.cms.domain.vo.InterviewInvitationVO;
|
||||
import com.ruoyi.cms.service.InterviewInvitationService;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
@@ -38,7 +39,7 @@ public class CmsInterviewController extends BaseController {
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(InterviewInvitation interviewInvitation){
|
||||
startPage();
|
||||
List<InterviewInvitation> list = interviewInvitationService.getInterviewInvitationList(interviewInvitation);
|
||||
List<InterviewInvitationVO> list = interviewInvitationService.getInterviewInvitationVOList(interviewInvitation);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
|
||||
@@ -77,6 +77,11 @@ public class InterviewInvitation extends BaseEntity {
|
||||
*/
|
||||
@ApiModelProperty("面试官联系方式")
|
||||
private String contactPhone;
|
||||
/**
|
||||
* 面试官姓名
|
||||
*/
|
||||
@ApiModelProperty("面试官姓名")
|
||||
private String interviewerName;
|
||||
/**
|
||||
* 公司名称(冗余存储,创建时从company表获取)
|
||||
*/
|
||||
|
||||
@@ -18,4 +18,6 @@ public class CandidateVO extends AppUser {
|
||||
private String companyName;
|
||||
@Excel(name = "岗位名称", sort = 1)
|
||||
private String jobName;
|
||||
private String interviewStatus;
|
||||
private Long interviewId;
|
||||
}
|
||||
|
||||
@@ -11,4 +11,10 @@ public class InterviewInvitationVO extends InterviewInvitation {
|
||||
|
||||
@ApiModelProperty("岗位名称(来自关联查询的实时数据)")
|
||||
private String jobTitle;
|
||||
|
||||
@ApiModelProperty("求职者姓名(来自关联查询的实时数据)")
|
||||
private String applicantName;
|
||||
|
||||
@ApiModelProperty("求职者联系方式(来自关联查询的实时数据)")
|
||||
private String applicantPhone;
|
||||
}
|
||||
|
||||
@@ -17,12 +17,14 @@ import com.ruoyi.common.core.domain.entity.Company;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
||||
import javax.sql.DataSource;
|
||||
import java.sql.Connection;
|
||||
import java.sql.Statement;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.springframework.boot.context.event.ApplicationReadyEvent;
|
||||
import org.springframework.context.event.EventListener;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
@@ -43,8 +45,9 @@ public class InterviewInvitationServiceImpl implements InterviewInvitationServic
|
||||
@Autowired
|
||||
private DataSource dataSource;
|
||||
|
||||
// @PostConstruct
|
||||
@EventListener(ApplicationReadyEvent.class)
|
||||
public void initTable() {
|
||||
log.info("开始检查并初始化 interview_invitation 表...");
|
||||
try (Connection conn = dataSource.getConnection();
|
||||
Statement stmt = conn.createStatement()) {
|
||||
// Check if id column has auto-increment (BIGSERIAL or sequence default)
|
||||
@@ -80,6 +83,7 @@ public class InterviewInvitationServiceImpl implements InterviewInvitationServic
|
||||
+ "meeting_password varchar(100) NULL,"
|
||||
+ "interview_location varchar(500) NULL,"
|
||||
+ "contact_phone varchar(50) NULL,"
|
||||
+ "interviewer_name varchar(100) NULL,"
|
||||
+ "company_name varchar(200) NULL,"
|
||||
+ "job_name varchar(200) NULL,"
|
||||
+ "status varchar(20) DEFAULT 'pending' NULL,"
|
||||
@@ -96,9 +100,16 @@ public class InterviewInvitationServiceImpl implements InterviewInvitationServic
|
||||
log.info("interview_invitation 表创建成功(序列自增)!");
|
||||
} else {
|
||||
log.info("interview_invitation 表结构正常,检查新增列...");
|
||||
// 为已有数据库添加新列(幂等操作)
|
||||
try { stmt.execute("ALTER TABLE interview_invitation ADD COLUMN IF NOT EXISTS company_name varchar(200) NULL"); } catch (Exception ignored) {}
|
||||
try { stmt.execute("ALTER TABLE interview_invitation ADD COLUMN IF NOT EXISTS job_name varchar(200) NULL"); } catch (Exception ignored) {}
|
||||
// 为已有数据库添加新列(幂等操作,使用 DO 块兼容不支持 IF NOT EXISTS 的数据库版本)
|
||||
try {
|
||||
stmt.execute("DO $$ BEGIN ALTER TABLE interview_invitation ADD COLUMN company_name varchar(200) NULL; EXCEPTION WHEN duplicate_column THEN END; $$;");
|
||||
} catch (Exception e) { log.warn("添加 company_name 列失败: {}", e.getMessage()); }
|
||||
try {
|
||||
stmt.execute("DO $$ BEGIN ALTER TABLE interview_invitation ADD COLUMN job_name varchar(200) NULL; EXCEPTION WHEN duplicate_column THEN END; $$;");
|
||||
} catch (Exception e) { log.warn("添加 job_name 列失败: {}", e.getMessage()); }
|
||||
try {
|
||||
stmt.execute("DO $$ BEGIN ALTER TABLE interview_invitation ADD COLUMN interviewer_name varchar(100) NULL; EXCEPTION WHEN duplicate_column THEN END; $$;");
|
||||
} catch (Exception e) { log.warn("添加 interviewer_name 列失败: {}", e.getMessage()); }
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.error("初始化表失败: {}", e.getMessage());
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
<result property="meetingPassword" column="meeting_password"/>
|
||||
<result property="interviewLocation" column="interview_location"/>
|
||||
<result property="contactPhone" column="contact_phone"/>
|
||||
<result property="interviewerName" column="interviewer_name"/>
|
||||
<result property="companyName" column="company_name"/>
|
||||
<result property="jobName" column="job_name"/>
|
||||
<result property="status" column="status"/>
|
||||
@@ -30,12 +31,14 @@
|
||||
<!-- VO 带公司名和岗位名(继承基础映射,jobTitle 来自关联查询的实时数据) -->
|
||||
<resultMap type="com.ruoyi.cms.domain.vo.InterviewInvitationVO" id="InterviewInvitationVOResult" extends="InterviewInvitationResult">
|
||||
<result property="jobTitle" column="job_title"/>
|
||||
<result property="applicantName" column="applicant_name"/>
|
||||
<result property="applicantPhone" column="applicant_phone"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectInterviewInvitationVo">
|
||||
select id, company_id, job_id, user_id, apply_id, interview_time,
|
||||
interview_method, meeting_link, meeting_password, interview_location,
|
||||
contact_phone, company_name, job_name, status, del_flag,
|
||||
contact_phone, interviewer_name, company_name, job_name, status, del_flag,
|
||||
create_by, create_time, update_by, update_time, remark
|
||||
from interview_invitation
|
||||
</sql>
|
||||
@@ -56,10 +59,13 @@
|
||||
<select id="getInterviewInvitationVOList" resultMap="InterviewInvitationVOResult" parameterType="InterviewInvitation">
|
||||
select t.*,
|
||||
COALESCE(c.name, t.company_name) as company_name,
|
||||
COALESCE(j.job_title, t.job_name) as job_title
|
||||
COALESCE(j.job_title, t.job_name) as job_title,
|
||||
u.name as applicant_name,
|
||||
u.phone as applicant_phone
|
||||
from interview_invitation t
|
||||
left join company c on c.company_id = t.company_id and c.del_flag = '0'
|
||||
left join job j on j.job_id = t.job_id and j.del_flag = '0'
|
||||
left join app_user u on u.user_id = t.user_id and u.del_flag = '0'
|
||||
<where> t.del_flag = '0'
|
||||
<if test="companyId != null and companyId != ''"> and t.company_id = #{companyId}</if>
|
||||
<if test="jobId != null and jobId != ''"> and t.job_id = #{jobId}</if>
|
||||
|
||||
@@ -42,10 +42,26 @@
|
||||
ORDER BY ja.create_time DESC
|
||||
</select>
|
||||
<select id="candidates" resultType="com.ruoyi.cms.domain.vo.CandidateVO">
|
||||
SELECT au.*,jc.create_time as apply_date,jc.matching_degree,jc.id as applyId
|
||||
SELECT au.*, jc.create_time as apply_date, jc.matching_degree, jc.id as applyId,
|
||||
latest_ii.status as interviewStatus, latest_ii.id as interviewId
|
||||
from job_apply as jc
|
||||
inner join app_user as au on jc.user_id = au.user_id
|
||||
left join (
|
||||
select ii1.*
|
||||
from interview_invitation ii1
|
||||
inner join (
|
||||
select user_id, job_id, max(create_time) as max_ct
|
||||
from interview_invitation
|
||||
where del_flag = '0'
|
||||
group by user_id, job_id
|
||||
) ii2 on ii1.user_id = ii2.user_id
|
||||
and ii1.job_id = ii2.job_id
|
||||
and ii1.create_time = ii2.max_ct
|
||||
) latest_ii on latest_ii.user_id = jc.user_id
|
||||
and latest_ii.job_id = jc.job_id
|
||||
and latest_ii.del_flag = '0'
|
||||
where jc.job_id = #{jobId} and jc.del_flag = '0' and au.del_flag ='0'
|
||||
order by jc.create_time desc
|
||||
</select>
|
||||
|
||||
<select id="trendChart" resultType="java.util.HashMap" parameterType="JobApply">
|
||||
@@ -104,10 +120,26 @@
|
||||
</select>
|
||||
|
||||
<select id="selectApplyJobUserList" parameterType="com.ruoyi.common.core.domain.entity.AppUser" resultType="com.ruoyi.cms.domain.vo.CandidateVO">
|
||||
select a.id applyId, a.hire, b.job_title jobName,l.name companyName,e.* from job_apply a
|
||||
select a.id applyId, a.hire, b.job_title jobName, l.name companyName, e.*,
|
||||
latest_ii.status as interviewStatus, latest_ii.id as interviewId
|
||||
from job_apply a
|
||||
INNER join job b on a.job_id=b.job_id and b.del_flag='0'
|
||||
INNER join app_user e on a.user_id =e.user_id and e.del_flag='0'
|
||||
INNER join company l on b.company_id =l.company_id and l.del_flag='0'
|
||||
left join (
|
||||
select ii1.*
|
||||
from interview_invitation ii1
|
||||
inner join (
|
||||
select user_id, job_id, max(create_time) as max_ct
|
||||
from interview_invitation
|
||||
where del_flag = '0'
|
||||
group by user_id, job_id
|
||||
) ii2 on ii1.user_id = ii2.user_id
|
||||
and ii1.job_id = ii2.job_id
|
||||
and ii1.create_time = ii2.max_ct
|
||||
) latest_ii on latest_ii.user_id = a.user_id
|
||||
and latest_ii.job_id = a.job_id
|
||||
and latest_ii.del_flag = '0'
|
||||
where a.del_flag='0'
|
||||
<if test="company != null and company.jobTitle != null and company.jobTitle != ''"> and b.job_title like concat('%', cast(#{company.jobTitle, jdbcType=VARCHAR} as varchar), '%')</if>
|
||||
<if test="company != null and company.education != null and company.education != ''"> and b.education = #{company.education}</if>
|
||||
|
||||
90
sql/migration_interview_menu.sql
Normal file
90
sql/migration_interview_menu.sql
Normal file
@@ -0,0 +1,90 @@
|
||||
-- =====================================================
|
||||
-- 面试列表 - 菜单权限配置 SQL
|
||||
-- 在 岗位管理 菜单下增加"面试列表"子菜单及按钮权限
|
||||
--
|
||||
-- 执行前请确认:
|
||||
-- 1. 确认 parent_id:面试列表将放在 "岗位管理" 目录下
|
||||
-- 如果数据库中岗位管理目录的 menu_id 不同,请修改下面子查询中的条件
|
||||
-- 2. sys_menu 表使用自增主键(auto_increment=2000),
|
||||
-- 本脚本使用 2100+ 的固定ID,避免与已有数据冲突
|
||||
-- 3. 执行后需要在"角色管理"中将新菜单分配给对应角色
|
||||
-- =====================================================
|
||||
|
||||
-- Step 1: 新增菜单项(C=菜单页面)
|
||||
-- parent_id 动态查找:path='management' 的目录菜单
|
||||
INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
SELECT 2100, '面试列表',
|
||||
(SELECT menu_id FROM sys_menu WHERE path = 'management' AND menu_type = 'M' LIMIT 1),
|
||||
10, 'interview-list', 'Management/InterviewList', '', 'InterviewList', 1, 0, 'C', '0', '0',
|
||||
'cms:interview:list', 'message', 'admin', CURRENT_TIMESTAMP, '', null, '面试列表菜单'
|
||||
WHERE EXISTS (SELECT 1 FROM sys_menu WHERE path = 'management' AND menu_type = 'M');
|
||||
|
||||
-- Step 2: 新增按钮权限(F=按钮)
|
||||
-- 面试查询
|
||||
INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
SELECT 2101, '面试查询', 2100, 1, '', '', '', '', 1, 0, 'F', '0', '0',
|
||||
'cms:interview:query', '#', 'admin', CURRENT_TIMESTAMP, '', null, ''
|
||||
WHERE EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2100);
|
||||
|
||||
-- 面试新增
|
||||
INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
SELECT 2102, '面试新增', 2100, 2, '', '', '', '', 1, 0, 'F', '0', '0',
|
||||
'cms:interview:add', '#', 'admin', CURRENT_TIMESTAMP, '', null, ''
|
||||
WHERE EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2100);
|
||||
|
||||
-- 面试修改
|
||||
INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
SELECT 2103, '面试修改', 2100, 3, '', '', '', '', 1, 0, 'F', '0', '0',
|
||||
'cms:interview:edit', '#', 'admin', CURRENT_TIMESTAMP, '', null, ''
|
||||
WHERE EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2100);
|
||||
|
||||
-- 面试删除
|
||||
INSERT INTO sys_menu (menu_id, menu_name, parent_id, order_num, path, component, query, route_name, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
SELECT 2104, '面试删除', 2100, 4, '', '', '', '', 1, 0, 'F', '0', '0',
|
||||
'cms:interview:remove', '#', 'admin', CURRENT_TIMESTAMP, '', null, ''
|
||||
WHERE EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2100);
|
||||
|
||||
-- Step 3: 将新菜单分配给角色
|
||||
-- 为所有非管理员角色分配面试列表权限(管理员角色无需分配,通配符 *:*:* 自动拥有全部权限)
|
||||
-- 如需仅限特定角色,请修改 WHERE 条件
|
||||
INSERT INTO sys_role_menu (role_id, menu_id)
|
||||
SELECT r.role_id, 2100
|
||||
FROM sys_role r
|
||||
WHERE r.role_key != 'admin'
|
||||
AND EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2100);
|
||||
|
||||
INSERT INTO sys_role_menu (role_id, menu_id)
|
||||
SELECT r.role_id, 2101
|
||||
FROM sys_role r
|
||||
WHERE r.role_key != 'admin'
|
||||
AND EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2101);
|
||||
|
||||
INSERT INTO sys_role_menu (role_id, menu_id)
|
||||
SELECT r.role_id, 2102
|
||||
FROM sys_role r
|
||||
WHERE r.role_key != 'admin'
|
||||
AND EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2102);
|
||||
|
||||
INSERT INTO sys_role_menu (role_id, menu_id)
|
||||
SELECT r.role_id, 2103
|
||||
FROM sys_role r
|
||||
WHERE r.role_key != 'admin'
|
||||
AND EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2103);
|
||||
|
||||
INSERT INTO sys_role_menu (role_id, menu_id)
|
||||
SELECT r.role_id, 2104
|
||||
FROM sys_role r
|
||||
WHERE r.role_key != 'admin'
|
||||
AND EXISTS (SELECT 1 FROM sys_menu WHERE menu_id = 2104);
|
||||
|
||||
-- =====================================================
|
||||
-- 验证 SQL(可选执行)
|
||||
-- =====================================================
|
||||
-- 检查菜单是否创建成功
|
||||
-- SELECT * FROM sys_menu WHERE menu_id BETWEEN 2100 AND 2104;
|
||||
|
||||
-- 检查角色菜单关联
|
||||
-- SELECT r.role_name, m.menu_name FROM sys_role_menu rm
|
||||
-- JOIN sys_role r ON r.role_id = rm.role_id
|
||||
-- JOIN sys_menu m ON m.menu_id = rm.menu_id
|
||||
-- WHERE rm.menu_id BETWEEN 2100 AND 2104;
|
||||
Reference in New Issue
Block a user