补充生产初始化脚本贷款定价菜单
This commit is contained in:
@@ -715,6 +715,23 @@ create table gen_table_column (
|
||||
primary key (column_id)
|
||||
) engine=innodb auto_increment=1 comment = '代码生成业务表字段';
|
||||
|
||||
-- ----------------------------
|
||||
-- 贷款定价菜单初始化
|
||||
-- ----------------------------
|
||||
DELETE FROM sys_role_menu WHERE menu_id IN (2000, 2001, 2002);
|
||||
DELETE FROM sys_menu WHERE menu_id IN (2000, 2001, 2002);
|
||||
|
||||
INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, remark)
|
||||
VALUES(2000, '利率定价管理', 0, 5, 'loanPricing', NULL, 1, 0, 'M', '0', '0', '', 'money', 'admin', NOW(), '');
|
||||
|
||||
INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, remark)
|
||||
VALUES(2001, '流程列表', 2000, 1, 'workflow', 'loanPricing/workflow/index', 1, 0, 'C', '0', '0', 'loanPricing:workflow:list', 'list', 'admin', NOW(), '');
|
||||
|
||||
INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, remark)
|
||||
VALUES(2002, '流程查询', 2001, 1, '', '', 1, 0, 'F', '0', '0', 'loanPricing:workflow:query', '#', 'admin', NOW(), '');
|
||||
|
||||
INSERT INTO sys_role_menu VALUES(1, 2000), (1, 2001), (1, 2002);
|
||||
|
||||
-- Table structure for table `loan_pricing_workflow`
|
||||
--
|
||||
|
||||
|
||||
Reference in New Issue
Block a user