merchUserMenu.sql 2.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. CREATE TABLE `merch_user` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  3. `merch_sn` varchar(32) DEFAULT NULL COMMENT '商户号',
  4. `user_id` varchar(32) DEFAULT NULL COMMENT '用户 id',
  5. `create_sn` varchar(32) DEFAULT NULL COMMENT '创建人编号',
  6. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  7. `mod_sn` varchar(255) DEFAULT NULL COMMENT '修改人',
  8. `mod_time` datetime DEFAULT NULL COMMENT '修改时间',
  9. `tstm` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  10. PRIMARY KEY (`id`)
  11. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='商户用户表';
  12. -- 菜单 SQL
  13. insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
  14. values('商户用户', '2288', '1', 'merchUser', 'merchant/merchUser/index', 1, 0, 'C', '0', '0', 'biz:merchUser:list', '#', 'admin', sysdate(), '', null, '商户用户菜单');
  15. -- 按钮父菜单ID
  16. SELECT @parentId := LAST_INSERT_ID();
  17. -- 按钮 SQL
  18. insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
  19. values('商户用户查询', @parentId, '1', '#', '', 1, 0, 'F', '0', '0', 'biz:merchUser:query', '#', 'admin', sysdate(), '', null, '');
  20. insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
  21. values('商户用户新增', @parentId, '2', '#', '', 1, 0, 'F', '0', '0', 'biz:merchUser:add', '#', 'admin', sysdate(), '', null, '');
  22. insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
  23. values('商户用户修改', @parentId, '3', '#', '', 1, 0, 'F', '0', '0', 'biz:merchUser:edit', '#', 'admin', sysdate(), '', null, '');
  24. insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
  25. values('商户用户删除', @parentId, '4', '#', '', 1, 0, 'F', '0', '0', 'biz:merchUser:remove', '#', 'admin', sysdate(), '', null, '');
  26. insert into sys_menu (menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
  27. values('商户用户导出', @parentId, '5', '#', '', 1, 0, 'F', '0', '0', 'biz:merchUser:export', '#', 'admin', sysdate(), '', null, '');