Skip to content

Commit

Permalink
chore: 更新通知公告新增、查看菜单数据
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Aug 4, 2024
1 parent be48408 commit 4554526
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@ public class RouteResp implements Serializable {
@Serial
private static final long serialVersionUID = 1L;

/**
* ID
*/
@Schema(description = "ID", example = "1010")
private Long id;

/**
* 上级菜单 ID
*/
@Schema(description = "上级菜单ID", example = "1000")
private Long parentId;

/**
* 标题
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,8 @@ VALUES
(4020, '任务日志', 4000, 2, '/schedule/log', 'ScheduleLog', 'schedule/log/index', NULL, 'find-replace', b'0', b'0', b'0', NULL, 2, 1, 1, NOW(), NULL, NULL),
(4021, '查看', 4020, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'schedule:log:list', 1, 1, 1, NOW(), NULL, NULL),
(4022, '停止', 4020, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'schedule:log:stop', 2, 1, 1, NOW(), NULL, NULL),
(4023, '重试', 4020, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'schedule:log:retry', 3, 1, 1, NOW(), NULL, NULL);
(4023, '重试', 4020, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'schedule:log:retry', 3, 1, 1, NOW(), NULL, NULL);

-- changeset Charles7c:3.2-2
UPDATE `sys_menu` SET `type` = 2, `path` = '/system/notice/detail', name = 'SystemNoticeDetail', component = 'system/notice/page/detail', `is_external` = b'0', `is_cache` = b'0', `is_hidden` = b'1' WHERE `id` = 1091;
UPDATE `sys_menu` SET `type` = 2, `path` = '/system/notice/add', name = 'SystemNoticeAdd', component = 'system/notice/page/add', `is_external` = b'0', `is_cache` = b'0', `is_hidden` = b'1' WHERE `id` = 1092;

0 comments on commit 4554526

Please sign in to comment.