first commit

This commit is contained in:
zc
2026-02-27 10:16:46 +08:00
commit 0ee56404c2
705 changed files with 47675 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
SET @parentId = 2026492742201946112;
-- 消费下发记录管理菜单
INSERT INTO `sys_menu`
(`id`, `title`, `parent_id`, `type`, `path`, `name`, `component`, `redirect`, `icon`, `is_external`, `is_cache`, `is_hidden`, `permission`, `sort`, `status`, `create_user`, `create_time`)
VALUES
(@parentId, '消费下发记录管理', 1000, 2, '/consume/downRecord', 'DownRecord', 'consume/downRecord/index', NULL, NULL, b'0', b'0', b'0', NULL, 1, 1, 1, NOW());
-- 消费下发记录管理按钮
INSERT INTO `sys_menu`
(`id`, `title`, `parent_id`, `type`, `permission`, `sort`, `status`, `create_user`, `create_time`)
VALUES
(2026492742201946113, '列表', @parentId, 3, 'consume:downRecord:list', 1, 1, 1, NOW()),
(2026492742201946114, '详情', @parentId, 3, 'consume:downRecord:detail', 2, 1, 1, NOW()),
(2026492742201946115, '新增', @parentId, 3, 'consume:downRecord:add', 3, 1, 1, NOW()),
(2026492742201946116, '修改', @parentId, 3, 'consume:downRecord:update', 4, 1, 1, NOW()),
(2026492742210334720, '删除', @parentId, 3, 'consume:downRecord:delete', 5, 1, 1, NOW()),
(2026492742210334721, '导出', @parentId, 3, 'consume:downRecord:export', 6, 1, 1, NOW());