64 lines
4.1 KiB
Java
64 lines
4.1 KiB
Java
|
|
-- MES 工序管理:建表 + 菜单 + 按钮权限 + 租户 admin 授权(可整文件一次执行)
|
|||
|
|
-- 权限前缀与 Controller、前端 v-auth 一致:mes:mes_process_operation:*
|
|||
|
|
-- 修改租户:改 SET @mes_tenant_id;仅建表可只执行下面 CREATE 段或单独文件 mes-process-operation.sql
|
|||
|
|
SET NAMES utf8mb4;
|
|||
|
|
|
|||
|
|
CREATE TABLE IF NOT EXISTS `mes_process_operation` (
|
|||
|
|
`id` varchar(32) NOT NULL COMMENT '主键',
|
|||
|
|
`operation_code` varchar(64) NOT NULL COMMENT '工序编码',
|
|||
|
|
`operation_name` varchar(128) NOT NULL COMMENT '工序名称',
|
|||
|
|
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
|
|||
|
|
`tenant_id` int DEFAULT NULL COMMENT '租户',
|
|||
|
|
`sys_org_code` varchar(64) DEFAULT NULL COMMENT '部门',
|
|||
|
|
`create_by` varchar(32) DEFAULT NULL COMMENT '创建人',
|
|||
|
|
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
|||
|
|
`update_by` varchar(32) DEFAULT NULL COMMENT '更新人',
|
|||
|
|
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
|||
|
|
`del_flag` int DEFAULT '0' COMMENT '删除标记(0正常1删除)',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `idx_mpo_operation_code` (`operation_code`)
|
|||
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='MES工序管理';
|
|||
|
|
|
|||
|
|
SET @mes_tenant_id = 1002;
|
|||
|
|
|
|||
|
|
SET @mes_base_pid = (
|
|||
|
|
SELECT MIN(`id`) FROM `sys_permission`
|
|||
|
|
WHERE `del_flag` = 0 AND `menu_type` = 0 AND `name` IN ('MES基础资料', 'MES资料')
|
|||
|
|
);
|
|||
|
|
SET @mes_base_pid = IFNULL(@mes_base_pid, '1860000000000000001');
|
|||
|
|
|
|||
|
|
INSERT INTO `sys_permission`(`id`, `parent_id`, `name`, `url`, `component`, `component_name`, `menu_type`, `perms`, `perms_type`, `sort_no`, `is_route`, `is_leaf`, `hidden`, `status`, `del_flag`, `keep_alive`, `internal_or_external`, `create_by`, `create_time`)
|
|||
|
|
VALUES ('1860000000000000060', @mes_base_pid, '工序管理', '/xslmes/mesXslProcessOperation', 'xslmes/mesXslProcessOperation/MesXslProcessOperationList', NULL, 1, NULL, '1', 9, 1, 0, 0, '1', 0, 1, 0, 'admin', NOW())
|
|||
|
|
ON DUPLICATE KEY UPDATE
|
|||
|
|
`parent_id` = VALUES(`parent_id`), `name` = VALUES(`name`), `url` = VALUES(`url`), `component` = VALUES(`component`), `component_name` = VALUES(`component_name`),
|
|||
|
|
`menu_type` = VALUES(`menu_type`), `perms` = VALUES(`perms`), `perms_type` = VALUES(`perms_type`), `sort_no` = VALUES(`sort_no`),
|
|||
|
|
`is_route` = VALUES(`is_route`), `is_leaf` = VALUES(`is_leaf`), `hidden` = VALUES(`hidden`), `status` = VALUES(`status`), `del_flag` = VALUES(`del_flag`),
|
|||
|
|
`keep_alive` = VALUES(`keep_alive`), `internal_or_external` = VALUES(`internal_or_external`);
|
|||
|
|
|
|||
|
|
INSERT INTO `sys_permission`(`id`, `parent_id`, `name`, `menu_type`, `perms`, `perms_type`, `status`, `del_flag`, `create_by`, `create_time`) VALUES
|
|||
|
|
('1860000000000000061', '1860000000000000060', '新增', 2, 'mes:mes_process_operation:add', '1', '1', 0, 'admin', NOW()),
|
|||
|
|
('1860000000000000062', '1860000000000000060', '编辑', 2, 'mes:mes_process_operation:edit', '1', '1', 0, 'admin', NOW()),
|
|||
|
|
('1860000000000000063', '1860000000000000060', '删除', 2, 'mes:mes_process_operation:delete', '1', '1', 0, 'admin', NOW()),
|
|||
|
|
('1860000000000000064', '1860000000000000060', '批量删除', 2, 'mes:mes_process_operation:deleteBatch', '1', '1', 0, 'admin', NOW()),
|
|||
|
|
('1860000000000000065', '1860000000000000060', '导出', 2, 'mes:mes_process_operation:exportXls', '1', '1', 0, 'admin', NOW()),
|
|||
|
|
('1860000000000000066', '1860000000000000060', '导入', 2, 'mes:mes_process_operation:importExcel', '1', '1', 0, 'admin', NOW())
|
|||
|
|
ON DUPLICATE KEY UPDATE
|
|||
|
|
`parent_id` = VALUES(`parent_id`), `name` = VALUES(`name`), `menu_type` = VALUES(`menu_type`), `perms` = VALUES(`perms`), `perms_type` = VALUES(`perms_type`),
|
|||
|
|
`status` = VALUES(`status`), `del_flag` = VALUES(`del_flag`);
|
|||
|
|
|
|||
|
|
INSERT INTO `sys_role_permission`(`id`, `role_id`, `permission_id`, `operate_date`, `operate_ip`)
|
|||
|
|
SELECT REPLACE(UUID(), '-', ''), r.`id`, p.`id`, NOW(), '127.0.0.1'
|
|||
|
|
FROM `sys_role` r
|
|||
|
|
CROSS JOIN `sys_permission` p
|
|||
|
|
WHERE r.`tenant_id` = @mes_tenant_id
|
|||
|
|
AND r.`role_code` = 'admin'
|
|||
|
|
AND p.`id` IN (
|
|||
|
|
'1860000000000000060',
|
|||
|
|
'1860000000000000061', '1860000000000000062', '1860000000000000063', '1860000000000000064',
|
|||
|
|
'1860000000000000065', '1860000000000000066'
|
|||
|
|
)
|
|||
|
|
AND NOT EXISTS (
|
|||
|
|
SELECT 1 FROM `sys_role_permission` rp
|
|||
|
|
WHERE rp.`role_id` = r.`id` AND rp.`permission_id` = p.`id`
|
|||
|
|
);
|