前端启动成功

This commit is contained in:
2025-10-07 13:31:06 +08:00
parent 8bd1edc75d
commit 741e89bc62
39 changed files with 19370 additions and 1458 deletions

View File

@@ -139,6 +139,7 @@ CREATE TABLE `tb_sys_menu` (
`name` VARCHAR(100) NOT NULL COMMENT '菜单名称',
`parent_id` VARCHAR(50) DEFAULT NULL COMMENT '父菜单ID',
`url` VARCHAR(255) DEFAULT NULL COMMENT '菜单URL',
`component` VARCHAR(255) DEFAULT NULL COMMENT '菜单组件',
`icon` VARCHAR(100) DEFAULT NULL COMMENT '菜单图标',
`order_num` INT(4) DEFAULT 0 COMMENT '菜单排序号',
`type` INT(4) DEFAULT 0 COMMENT '菜单类型0目录 1菜单 2按钮',

View File

@@ -1,5 +1,5 @@
server:
port: 8080
port: 8081
servlet:
context-path: /schoolNewsServ
encoding:

View File

@@ -46,6 +46,12 @@ public class TbSysMenu extends BaseDTO {
*/
private String url;
/**
* @description 菜单组件
* @author yslg
* @since 2024-06
*/
private String component;
/**
* @description 菜单图标
* @author yslg
@@ -121,6 +127,14 @@ public class TbSysMenu extends BaseDTO {
this.url = url;
}
public String getComponent() {
return component;
}
public void setComponent(String component) {
this.component = component;
}
public String getIcon() {
return icon;
}
@@ -170,6 +184,7 @@ public class TbSysMenu extends BaseDTO {
", name='" + name + '\'' +
", description='" + description + '\'' +
", url='" + url + '\'' +
", component='" + component + '\'' +
", icon='" + icon + '\'' +
", orderNum=" + orderNum +
", type=" + type +