123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- -- ----------------------------
- -- 合同菜单
- -- ----------------------------
- -- 菜单 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status, component_name
- )
- VALUES (
- '合同管理', '', 2, 0, 2375,
- 'contract', '', 'crm/contract/index', 0, 'Contract'
- );
- -- 按钮父菜单ID
- -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
- SELECT @parentId := LAST_INSERT_ID();
- -- 按钮 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '合同查询', 'crm:contract:query', 3, 1, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '合同创建', 'crm:contract:create', 3, 2, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '合同更新', 'crm:contract:update', 3, 3, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '合同删除', 'crm:contract:delete', 3, 4, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '合同导出', 'crm:contract:export', 3, 5, @parentId,
- '', '', '', 0
- );
- -- ----------------------------
- -- 线索菜单
- -- ----------------------------
- -- 菜单 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status, component_name
- )
- VALUES (
- '线索管理', '', 2, 0, 2375,
- 'clue', '', 'crm/clue/index', 0, 'CrmClue'
- );
- -- 按钮父菜单ID
- -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
- SELECT @parentId := LAST_INSERT_ID();
- -- 按钮 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '线索查询', 'crm:clue:query', 3, 1, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '线索创建', 'crm:clue:create', 3, 2, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '线索更新', 'crm:clue:update', 3, 3, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '线索删除', 'crm:clue:delete', 3, 4, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '线索导出', 'crm:clue:export', 3, 5, @parentId,
- '', '', '', 0
- );
- -- 菜单 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status, component_name
- )
- VALUES (
- '联系人', '', 2, 0, ${table.parentMenuId},
- 'contact', '', 'crm/contact/index', 0, 'Contact'
- );
- -- 按钮父菜单ID
- -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
- SELECT @parentId := LAST_INSERT_ID();
- -- 按钮 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '联系人查询', 'crm:contact:query', 3, 1, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '联系人创建', 'crm:contact:create', 3, 2, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '联系人更新', 'crm:contact:update', 3, 3, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '联系人删除', 'crm:contact:delete', 3, 4, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '联系人导出', 'crm:contact:export', 3, 5, @parentId,
- '', '', '', 0
- );
- -- ----------------------------
- -- 合同菜单
- -- ----------------------------
- -- 菜单 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status, component_name
- )
- VALUES (
- '商机管理', '', 2, 0, '',
- 'business', '', 'crm/business/index', 0, 'CrmBusiness'
- );
- -- 按钮父菜单ID
- -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
- SELECT @parentId := LAST_INSERT_ID();
- -- 按钮 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '商机查询', 'crm:business:query', 3, 1, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '商机创建', 'crm:business:create', 3, 2, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '商机更新', 'crm:business:update', 3, 3, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '商机删除', 'crm:business:delete', 3, 4, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '商机导出', 'crm:business:export', 3, 5, @parentId,
- '', '', '', 0
- );
- -- ----------------------------
- -- 客户管理菜单
- -- ----------------------------
- INSERT INTO `system_menu` (`id`, `name`, `permission`, `type`, `sort`, `parent_id`, `path`, `icon`, `component`, `component_name`, `status`, `visible`, `keep_alive`, `always_show`, `creator`, `create_time`, `updater`, `update_time`, `deleted`) VALUES (2375, '客户管理', '', 1, 0, 0, '/crm', 'ep:avatar', '', '', 0, b'1', b'1', b'1', '1', '2023-10-20 00:36:13', '1', '2023-10-19 16:37:24', b'0');
- -- ----------------------------
- -- 回款菜单
- -- ----------------------------
- -- 菜单 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status, component_name
- )
- VALUES (
- '回款管理', '', 2, 0, 2375,
- 'receivable', '', 'crm/receivable/index', 0, 'Receivable'
- );
- -- 按钮父菜单ID
- -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
- SELECT @parentId := LAST_INSERT_ID();
- -- 按钮 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款管理查询', 'crm:receivable:query', 3, 1, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款管理创建', 'crm:receivable:create', 3, 2, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款管理更新', 'crm:receivable:update', 3, 3, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款管理删除', 'crm:receivable:delete', 3, 4, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款管理导出', 'crm:receivable:export', 3, 5, @parentId,
- '', '', '', 0
- );
- -- ----------------------------
- -- 回款计划菜单
- -- ----------------------------
- -- 菜单 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status, component_name
- )
- VALUES (
- '回款计划管理', '', 2, 0, 2375,
- 'receivable-plan', '', 'crm/receivablePlan/index', 0, 'ReceivablePlan'
- );
- -- 按钮父菜单ID
- -- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
- SELECT @parentId := LAST_INSERT_ID();
- -- 按钮 SQL
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款计划查询', 'crm:receivable-plan:query', 3, 1, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款计划创建', 'crm:receivable-plan:create', 3, 2, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款计划更新', 'crm:receivable-plan:update', 3, 3, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款计划删除', 'crm:receivable-plan:delete', 3, 4, @parentId,
- '', '', '', 0
- );
- INSERT INTO system_menu(
- name, permission, type, sort, parent_id,
- path, icon, component, status
- )
- VALUES (
- '回款计划导出', 'crm:receivable-plan:export', 3, 5, @parentId,
- '', '', '', 0
- );
|