refactor: 重构路由菜单功能

This commit is contained in:
valarchie
2023-07-22 17:15:43 +08:00
parent 71c9a7589d
commit 7da7481887
15 changed files with 846 additions and 109 deletions

View File

@@ -122,7 +122,7 @@ public class LoginController {
/**
* 获取路由信息
*
* TODO 如果要在前端开启路由缓存的话 需要在ServerConfig.json 中 设置CachingAsyncRoutes=true 避免一直重复请求路由接口
* @return 路由信息
*/
@Operation(summary = "获取用户对应的菜单路由", description = "用于动态生成路由")

View File

@@ -7,6 +7,7 @@ import com.agileboot.domain.system.menu.MenuApplicationService;
import com.agileboot.domain.system.menu.command.AddMenuCommand;
import com.agileboot.domain.system.menu.command.UpdateMenuCommand;
import com.agileboot.domain.system.menu.dto.MenuDTO;
import com.agileboot.domain.system.menu.dto.MenuDetailDTO;
import com.agileboot.domain.system.menu.query.MenuQuery;
import com.agileboot.infrastructure.annotations.AccessLog;
import com.agileboot.infrastructure.security.AuthenticationUtils;
@@ -37,7 +38,7 @@ import org.springframework.web.bind.annotation.RestController;
*/
@Tag(name = "菜单API", description = "菜单相关的增删查改")
@RestController
@RequestMapping("/system/menu")
@RequestMapping("/system/menus")
@Validated
@RequiredArgsConstructor
public class SysMenuController extends BaseController {
@@ -50,9 +51,9 @@ public class SysMenuController extends BaseController {
*/
@Operation(summary = "菜单列表")
@PreAuthorize("@permission.has('system:menu:list')")
@GetMapping("/list")
public ResponseDTO<List<MenuDTO>> list(MenuQuery query) {
List<MenuDTO> menuList = menuApplicationService.getMenuList(query);
@GetMapping
public ResponseDTO<List<MenuDTO>> menuList(MenuQuery menuQuery) {
List<MenuDTO> menuList = menuApplicationService.getMenuList(menuQuery);
return ResponseDTO.ok(menuList);
}
@@ -62,8 +63,8 @@ public class SysMenuController extends BaseController {
@Operation(summary = "菜单详情")
@PreAuthorize("@permission.has('system:menu:query')")
@GetMapping(value = "/{menuId}")
public ResponseDTO<MenuDTO> getInfo(@PathVariable @NotNull @PositiveOrZero Long menuId) {
MenuDTO menu = menuApplicationService.getMenuInfo(menuId);
public ResponseDTO<MenuDetailDTO> menuInfo(@PathVariable @NotNull @PositiveOrZero Long menuId) {
MenuDetailDTO menu = menuApplicationService.getMenuInfo(menuId);
return ResponseDTO.ok(menu);
}
@@ -71,7 +72,7 @@ public class SysMenuController extends BaseController {
* 获取菜单下拉树列表
*/
@Operation(summary = "菜单列表(树级)", description = "菜单树级下拉框")
@GetMapping("/dropdownList")
@GetMapping("/dropdown")
public ResponseDTO<List<Tree<Long>>> dropdownList() {
LoginUser loginUser = AuthenticationUtils.getLoginUser();
List<Tree<Long>> dropdownList = menuApplicationService.getDropdownList(loginUser);
@@ -80,6 +81,9 @@ public class SysMenuController extends BaseController {
/**
* 新增菜单
* 需支持一级菜单以及 多级菜单 子菜单为一个 或者 多个的情况
* 隐藏菜单不显示 以及rank排序
* 内链 和 外链
*/
@Operation(summary = "添加菜单")
@PreAuthorize("@permission.has('system:menu:add')")
@@ -96,8 +100,9 @@ public class SysMenuController extends BaseController {
@Operation(summary = "编辑菜单")
@PreAuthorize("@permission.has('system:menu:edit')")
@AccessLog(title = "菜单管理", businessType = BusinessTypeEnum.MODIFY)
@PutMapping
public ResponseDTO<Void> edit(@RequestBody UpdateMenuCommand updateCommand) {
@PutMapping("/{menuId}")
public ResponseDTO<Void> edit(@PathVariable("menuId") Long menuId, @RequestBody UpdateMenuCommand updateCommand) {
updateCommand.setMenuId(menuId);
menuApplicationService.updateMenu(updateCommand);
return ResponseDTO.ok();
}
@@ -114,5 +119,4 @@ public class SysMenuController extends BaseController {
return ResponseDTO.ok();
}
}

View File

@@ -151,6 +151,15 @@ public enum ErrorCode implements ErrorCodeInterface {
MENU_ALREADY_ASSIGN_TO_ROLE_NOT_ALLOW_DELETE(Module.MENU, 5,
"Business.MENU_ALREADY_ASSIGN_TO_ROLE_NOT_ALLOW_DELETE", "菜单已分配给角色,不允许"),
MENU_NOT_ALLOWED_TO_CREATE_BUTTON_ON_IFRAME_OR_OUT_LINK(Module.MENU, 6,
"Business.MENU_ONLY_ALLOWED_TO_CREATE_BUTTON_ON_PAGE", "不允许在Iframe和外链跳转类型下创建按钮"),
MENU_ONLY_ALLOWED_TO_CREATE_SUB_MENU_IN_CATALOG(Module.MENU, 7,
"Business.MENU_ONLY_ALLOWED_TO_CREATE_SUB_MENU_IN_CATALOG", "只允许在目录类型底下创建子菜单"),
MENU_CAN_NOT_CHANGE_MENU_TYPE(Module.MENU, 8,
"Business.MENU_CAN_NOT_CHANGE_MENU_TYPE", "不允许更改菜单的类型"),
// -------------------------------- Role -------------------------------------------------
ROLE_NAME_IS_NOT_UNIQUE(Module.ROLE, 1, "Business.ROLE_NAME_IS_NOT_UNIQUE", "角色名称:{}, 已存在"),

View File

@@ -7,13 +7,16 @@ import cn.hutool.core.lang.tree.TreeUtil;
import com.agileboot.domain.system.menu.command.AddMenuCommand;
import com.agileboot.domain.system.menu.command.UpdateMenuCommand;
import com.agileboot.domain.system.menu.dto.MenuDTO;
import com.agileboot.domain.system.menu.dto.MenuDetailDTO;
import com.agileboot.domain.system.menu.dto.RouterDTO;
import com.agileboot.domain.system.menu.model.MenuModel;
import com.agileboot.domain.system.menu.model.MenuModelFactory;
import com.agileboot.domain.system.menu.query.MenuQuery;
import com.agileboot.infrastructure.web.domain.login.LoginUser;
import com.agileboot.orm.common.enums.StatusEnum;
import com.agileboot.orm.system.entity.SysMenuEntity;
import com.agileboot.orm.system.service.ISysMenuService;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;
import java.util.stream.Collectors;
@@ -38,12 +41,14 @@ public class MenuApplicationService {
public List<MenuDTO> getMenuList(MenuQuery query) {
List<SysMenuEntity> list = menuService.list(query.toQueryWrapper());
return list.stream().map(MenuDTO::new).collect(Collectors.toList());
return list.stream().map(MenuDTO::new)
.sorted(Comparator.comparing(MenuDTO::getRank, Comparator.nullsLast(Integer::compareTo)))
.collect(Collectors.toList());
}
public MenuDTO getMenuInfo(Long menuId) {
public MenuDetailDTO getMenuInfo(Long menuId) {
SysMenuEntity byId = menuService.getById(menuId);
return new MenuDTO(byId);
return new MenuDetailDTO(byId);
}
public List<Tree<Long>> getDropdownList(LoginUser loginUser) {
@@ -58,7 +63,11 @@ public class MenuApplicationService {
MenuModel model = menuModelFactory.create();
model.loadAddCommand(addCommand);
// TODO 只允许在页面类型上添加按钮
// 目前前端不支持嵌套的外链跳转
model.checkMenuNameUnique();
model.checkAddButtonInIframeOrOutLink();
model.checkAddMenuNotInCatalog();
model.checkExternalLink();
model.insert();
@@ -69,6 +78,8 @@ public class MenuApplicationService {
model.loadUpdateCommand(updateCommand);
model.checkMenuNameUnique();
model.checkAddButtonInIframeOrOutLink();
model.checkAddMenuNotInCatalog();
model.checkExternalLink();
model.checkParentIdConflict();
@@ -113,8 +124,10 @@ public class MenuApplicationService {
allMenus = menuService.getMenuListByUserId(loginUser.getUserId());
}
// 传给前端的路由排除掉按钮和停用的菜单
List<SysMenuEntity> noButtonMenus = allMenus.stream()
.filter(menu -> !menu.getIsButton())
.filter(menu-> StatusEnum.ENABLE.getValue().equals(menu.getStatus()))
.collect(Collectors.toList());
TreeNodeConfig config = new TreeNodeConfig();
@@ -125,7 +138,8 @@ public class MenuApplicationService {
// 也可以使用 tree.setId(dept.getId());等一些默认值
tree.setId(menu.getMenuId());
tree.setParentId(menu.getParentId());
tree.setWeight(menu.getRank());
// TODO 可以取meta中的rank来排序
// tree.setWeight(menu.getRank());
tree.putExtra("entity", menu);
});

View File

@@ -1,5 +1,6 @@
package com.agileboot.domain.system.menu.command;
import com.agileboot.domain.system.menu.dto.MetaDTO;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
@@ -11,36 +12,26 @@ import lombok.Data;
@Data
public class AddMenuCommand {
private Long parentId;
@NotBlank(message = "菜单名称不能为空")
@Size(max = 50, message = "菜单名称长度不能超过50个字符")
private String menuName;
private Long parentId;
@NotNull(message = "显示顺序不能为空")
private Integer orderNum;
/**
* 路由名称 必须唯一
*/
private String routerName;
@Size(max = 200, message = "路由地址不能超过200个字符")
private String path;
@Size(max = 200, message = "组件路径不能超过255个字符")
private String component;
private Integer isExternal;
private Integer isCache;
private Integer status;
private Integer menuType;
private Integer isVisible;
private Integer status;
private String query;
private Boolean isButton;
@Size(max = 100, message = "权限标识长度不能超过100个字符")
private String perms;
private String permission;
private String icon;
private MetaDTO meta;
}

View File

@@ -1,53 +1,73 @@
package com.agileboot.domain.system.menu.dto;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.util.StrUtil;
import com.agileboot.common.utils.jackson.JacksonUtil;
import com.agileboot.orm.common.enums.MenuTypeEnum;
import com.agileboot.orm.common.enums.StatusEnum;
import com.agileboot.orm.common.util.BasicEnumUtil;
import com.agileboot.orm.system.entity.SysMenuEntity;
import java.util.Date;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @author valarchie
*/
@Data
@NoArgsConstructor
public class MenuDTO {
public MenuDTO(SysMenuEntity entity) {
if (entity != null) {
this.menuId = entity.getMenuId();
this.id = entity.getMenuId();
this.parentId = entity.getParentId();
this.menuName = entity.getMenuName();
// this.menuType = entity.getMenuType();
// this.icon = entity.getIcon();
// this.orderNum = entity.getOrderNum();
this.component = entity.getComponent();
// this.perms = entity.getPerms();
this.routerName = entity.getRouterName();
this.path = entity.getPath();
this.status = entity.getStatus();
this.isButton = entity.getIsButton();
this.statusStr = BasicEnumUtil.getDescriptionByValue(StatusEnum.class, entity.getStatus());
if (!entity.getIsButton()) {
this.menuType = entity.getMenuType();
this.menuTypeStr = BasicEnumUtil.getDescriptionByValue(MenuTypeEnum.class, entity.getMenuType());
} else {
this.menuType = 0;
}
if (StrUtil.isNotEmpty(entity.getMetaInfo()) && JacksonUtil.isJson(entity.getMetaInfo())) {
this.rank = JacksonUtil.from(entity.getMetaInfo(), MetaDTO.class).getRank();
}
this.createTime = entity.getCreateTime();
// this.isExternal = BooleanUtil.toInt(entity.getIsExternal());
// this.isCache = BooleanUtil.toInt(entity.getIsCache());
// this.isVisible = BooleanUtil.toInt(entity.getIsVisible());
this.query = entity.getQuery();
}
}
private Long menuId;
// 设置成id和parentId 便于前端处理树级结构
private Long id;
private Long parentId;
private Integer menuType;
private String menuName;
private String icon;
private Integer orderNum;
private String component;
private String routerName;
private String path;
private String perms;
private Integer rank;
private Integer menuType;
private String menuTypeStr;
private Boolean isButton;
private Integer status;
private String statusStr;
private Date createTime;
private Integer isExternal;
private Integer isCache;
private Integer isVisible;
private String query;
}

View File

@@ -0,0 +1,30 @@
package com.agileboot.domain.system.menu.dto;
import cn.hutool.core.util.StrUtil;
import com.agileboot.common.utils.jackson.JacksonUtil;
import com.agileboot.orm.system.entity.SysMenuEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* @author valarchie
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class MenuDetailDTO extends MenuDTO {
public MenuDetailDTO(SysMenuEntity entity) {
super(entity);
if (entity == null) {
return;
}
if (StrUtil.isNotEmpty(entity.getMetaInfo()) && JacksonUtil.isJson(entity.getMetaInfo())) {
this.meta = JacksonUtil.from(entity.getMetaInfo(), MetaDTO.class);
}
this.permission = entity.getPermission();
}
private String permission;
private MetaDTO meta;
}

View File

@@ -15,13 +15,10 @@ import lombok.NoArgsConstructor;
@NoArgsConstructor
@JsonInclude(Include.NON_NULL)
public class MetaDTO {
// 菜单名称兼容国际化、非国际化如果用国际化的写法就必须在根目录的locales文件夹下对应添加
private String title;
// 菜单图标
private String icon;
// 菜单名称右侧的额外图标
private ExtraIconDTO extraIcon;
// 是否显示该菜单
private Boolean showLink;
// 是否显示父级菜单
@@ -30,8 +27,6 @@ public class MetaDTO {
private List<String> roles;
// 按钮级别权限设置
private List<String> auths;
// 是否缓存该路由页面(开启后,会保存该页面的整体状态,刷新后会清空状态)
private Boolean keepAlive;
// 需要内嵌的iframe链接地址
private String frameSrc;
/**
@@ -40,6 +35,19 @@ public class MetaDTO {
* 前端需要处理成 http://localhost:8080/druid/login.html
*/
private Boolean isFrameSrcInternal;
/**
* 菜单排序,值越高排的越后(只针对顶级路由)
*/
private Integer rank;
// ========= 目前系统仅支持以上这些参数的设置 后续有需要的话开发者可自行设置的这些参数 ===========
// 菜单名称右侧的额外图标
private ExtraIconDTO extraIcon;
// 是否缓存该路由页面(开启后,会保存该页面的整体状态,刷新后会清空状态)
private Boolean keepAlive;
// 内嵌的iframe页面是否开启首次加载动画
private Boolean frameLoading;
// 页面加载动画两种模式第一种直接采用vue内置的transitions动画第二种是使用animate.css编写进、离场动画平台更推荐使用第二种模式已经内置了animate.css直接写对应的动画名即可

View File

@@ -21,12 +21,12 @@ public class RouterDTO {
public RouterDTO(SysMenuEntity entity) {
if (entity != null) {
this.name = entity.getRouteName();
this.name = entity.getRouterName();
this.path = entity.getPath();
// 暂时不需要component
// this.component = entity.getComponent();
this.rank = entity.getRank();
this.redirect = entity.getRedirect();
// this.rank = entity.getRank();
// this.redirect = entity.getRedirect();
if (JacksonUtil.isJson(entity.getMetaInfo())) {
this.meta = JacksonUtil.from(entity.getMetaInfo(), MetaDTO.class);
} else {
@@ -38,7 +38,7 @@ public class RouterDTO {
/**
* 路由名字 根据前端的要求 必须唯一
* 并按照前端项目的推荐 这个Name最好和组件的Name一样
* 并按照前端项目的推荐 这个Name最好和组件的Name一样 使用菜单表中的router_name
* TODO 这里后端需要加校验
*/
private String name;

View File

@@ -3,10 +3,14 @@ package com.agileboot.domain.system.menu.model;
import cn.hutool.core.bean.BeanUtil;
import com.agileboot.common.exception.ApiException;
import com.agileboot.common.exception.error.ErrorCode;
import com.agileboot.common.exception.error.ErrorCode.Business;
import com.agileboot.common.utils.jackson.JacksonUtil;
import com.agileboot.domain.system.menu.command.AddMenuCommand;
import com.agileboot.domain.system.menu.command.UpdateMenuCommand;
import com.agileboot.orm.common.enums.MenuTypeEnum;
import com.agileboot.orm.system.entity.SysMenuEntity;
import com.agileboot.orm.system.service.ISysMenuService;
import java.util.Objects;
import lombok.NoArgsConstructor;
/**
@@ -31,11 +35,17 @@ public class MenuModel extends SysMenuEntity {
public void loadAddCommand(AddMenuCommand command) {
if (command != null) {
BeanUtil.copyProperties(command, this, "menuId");
String metaInfo = JacksonUtil.to(command.getMeta());
this.setMetaInfo(metaInfo);
}
}
public void loadUpdateCommand(UpdateMenuCommand command) {
if (command != null) {
if (!Objects.equals(this.getMenuType(), command.getMenuType()) && !this.getIsButton()) {
throw new ApiException(Business.MENU_CAN_NOT_CHANGE_MENU_TYPE);
}
loadAddCommand(command);
}
}
@@ -47,6 +57,34 @@ public class MenuModel extends SysMenuEntity {
}
}
/**
* Iframe和外链跳转类型 不允许添加按钮
*/
public void checkAddButtonInIframeOrOutLink() {
SysMenuEntity parentMenu = menuService.getById(getParentId());
if (parentMenu != null && getIsButton() && (
Objects.equals(parentMenu.getMenuType(), MenuTypeEnum.IFRAME.getValue())
|| Objects.equals(parentMenu.getMenuType(),MenuTypeEnum.OUTSIDE_LINK_REDIRECT.getValue())
)) {
throw new ApiException(Business.MENU_NOT_ALLOWED_TO_CREATE_BUTTON_ON_IFRAME_OR_OUT_LINK);
}
}
/**
* 只允许在目录菜单类型底下 添加子菜单
*/
public void checkAddMenuNotInCatalog() {
SysMenuEntity parentMenu = menuService.getById(getParentId());
if (parentMenu != null && !getIsButton() && (
!Objects.equals(parentMenu.getMenuType(), MenuTypeEnum.CATALOG.getValue())
)) {
throw new ApiException(Business.MENU_ONLY_ALLOWED_TO_CREATE_SUB_MENU_IN_CATALOG);
}
}
public void checkExternalLink() {
// if (getIsExternal() && !HttpUtil.isHttp(getPath()) && !HttpUtil.isHttps(getPath())) {
// throw new ApiException(ErrorCode.Business.MENU_EXTERNAL_LINK_MUST_BE_HTTP);

View File

@@ -1,10 +1,8 @@
package com.agileboot.domain.system.menu.query;
import cn.hutool.core.util.StrUtil;
import com.agileboot.orm.common.query.AbstractQuery;
import com.agileboot.orm.system.entity.SysMenuEntity;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import java.util.Arrays;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -14,19 +12,21 @@ import lombok.EqualsAndHashCode;
@EqualsAndHashCode(callSuper = true)
@Data
public class MenuQuery extends AbstractQuery<SysMenuEntity> {
private String menuName;
private Boolean isVisible;
private Integer status;
// 直接交给前端筛选
// private String menuName;
// private Boolean isVisible;
// private Integer status;
private Boolean isButton;
@Override
public QueryWrapper<SysMenuEntity> addQueryCondition() {
QueryWrapper<SysMenuEntity> queryWrapper = new QueryWrapper<SysMenuEntity>()
.like(StrUtil.isNotEmpty(menuName), "menu_name", menuName)
.eq(isVisible != null, "is_visible", isVisible)
.eq(status != null, "status", status);
queryWrapper.orderBy(true, true, Arrays.asList("parent_id", "order_num"));
QueryWrapper<SysMenuEntity> queryWrapper = new QueryWrapper<>();
queryWrapper.eq(isButton != null, "is_button", isButton);
// .like(StrUtil.isNotEmpty(menuName), "menu_name", menuName)
// .eq(isVisible != null, "is_visible", isVisible)
// .eq(status != null, "status", status);
this.orderColumn = "parent_id";
this.orderDirection = "descending";
return queryWrapper;
}
}

View File

@@ -62,7 +62,7 @@ public class CodeGenerator {
//生成的类 放在orm子模块下的/target/generated-code目录底下
.module("/agileboot-orm/target/generated-code")
.parentPackage("com.agileboot")
.tableName("sys_config")
.tableName("sys_menu")
// 决定是否继承基类
.isExtendsFromBaseEntity(true)
.build();

View File

@@ -6,15 +6,15 @@ import com.agileboot.orm.common.interfaces.BasicEnum;
* @author valarchie
* 对应 sys_menu表的menu_type字段
*/
@Deprecated
public enum MenuTypeEnum implements BasicEnum<Integer> {
/**
* 菜单类型
*/
DIRECTORY(1, "目录"),
MENU(2, "菜单"),
BUTTON(3, "按钮");
MENU(1, "页面"),
CATALOG(2, "目录"),
IFRAME(3, "内嵌Iframe"),
OUTSIDE_LINK_REDIRECT(4, "外链跳转");
private final int value;
private final String description;

View File

@@ -5,9 +5,9 @@ import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import lombok.Getter;
import lombok.Setter;
@@ -17,7 +17,7 @@ import lombok.Setter;
* </p>
*
* @author valarchie
* @since 2022-10-02
* @since 2023-07-21
*/
@Getter
@Setter
@@ -35,54 +35,43 @@ public class SysMenuEntity extends BaseEntity<SysMenuEntity> {
@TableField("menu_name")
private String menuName;
@ApiModelProperty("路由名称")
@TableField("route_name")
private String routeName;
@ApiModelProperty("菜单的类型(1为普通菜单2为目录3为iFrame4为外部网站)")
@TableField("menu_type")
private Integer menuType;
@ApiModelProperty("重定向地址")
@TableField("redirect")
private String redirect;
@ApiModelProperty("路由名称需保持和前端对应的vue文件中的name保持一致defineOptions方法中设置的name")
@TableField("router_name")
private String routerName;
@ApiModelProperty("父菜单ID")
@TableField("parent_id")
private Long parentId;
@ApiModelProperty("显示顺序")
@TableField("`rank`")
private Integer rank;
@ApiModelProperty("路由地址")
@ApiModelProperty("组件路径对应前端项目view文件夹中的路径")
@TableField("path")
private String path;
@ApiModelProperty("组件路径")
@TableField("component")
private String component;
@ApiModelProperty("路由参数")
@TableField("`query`")
private String query;
@ApiModelProperty("路由元信息主要由前端处理")
@TableField("meta_info")
private String metaInfo;
@ApiModelProperty("是否按钮")
@TableField("is_button")
private Boolean isButton;
@ApiModelProperty("菜单状态0正常 1停用")
@TableField("`status`")
private Integer status;
@ApiModelProperty("权限标识")
@TableField("permission")
private String permission;
@ApiModelProperty("路由元信息(前端根据这个信息进行逻辑处理)")
@TableField("meta_info")
private String metaInfo;
@ApiModelProperty("菜单状态1启用 0停用")
@TableField("`status`")
private Integer status;
@ApiModelProperty("备注")
@TableField("remark")
private String remark;
@Override
public Serializable pkVal() {
return this.menuId;

View File

@@ -0,0 +1,634 @@
create table sys_config
(
config_id int auto_increment comment '参数主键'
primary key,
config_name varchar(128) default '' not null comment '配置名称',
config_key varchar(128) default '' not null comment '配置键名',
config_options varchar(1024) default '' not null comment '可选的选项',
config_value varchar(256) default '' not null comment '配置值',
is_allow_change tinyint(1) not null comment '是否允许修改',
creator_id bigint null comment '创建者ID',
updater_id bigint null comment '更新者ID',
update_time datetime null comment '更新时间',
create_time datetime null comment '创建时间',
remark varchar(128) null comment '备注',
deleted tinyint(1) default 0 not null comment '逻辑删除',
constraint config_key_uniq_idx
unique (config_key)
)
comment '参数配置表';
INSERT INTO sys_config (config_id, config_name, config_key, config_options, config_value, is_allow_change, creator_id, updater_id, update_time, create_time, remark, deleted) VALUES (1, '主框架页-默认皮肤样式名称', 'sys.index.skinName', '["skin-blue","skin-green","skin-purple","skin-red","skin-yellow"]', 'skin-blue', 1, null, null, '2022-08-28 22:12:19', '2022-05-21 08:30:55', '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow', 0);
INSERT INTO sys_config (config_id, config_name, config_key, config_options, config_value, is_allow_change, creator_id, updater_id, update_time, create_time, remark, deleted) VALUES (2, '用户管理-账号初始密码', 'sys.user.initPassword', '', '123456', 1, null, 1, '2023-07-20 14:42:08', '2022-05-21 08:30:55', '初始化密码 123456', 0);
INSERT INTO sys_config (config_id, config_name, config_key, config_options, config_value, is_allow_change, creator_id, updater_id, update_time, create_time, remark, deleted) VALUES (3, '主框架页-侧边栏主题', 'sys.index.sideTheme', '["theme-dark","theme-light"]', 'theme-dark', 1, null, null, '2022-08-28 22:12:15', '2022-08-20 08:30:55', '深色主题theme-dark浅色主题theme-light', 0);
INSERT INTO sys_config (config_id, config_name, config_key, config_options, config_value, is_allow_change, creator_id, updater_id, update_time, create_time, remark, deleted) VALUES (4, '账号自助-验证码开关', 'sys.account.captchaOnOff', '["true","false"]', 'false', 0, null, 1, '2023-07-20 14:39:36', '2022-05-21 08:30:55', '是否开启验证码功能true开启false关闭', 0);
INSERT INTO sys_config (config_id, config_name, config_key, config_options, config_value, is_allow_change, creator_id, updater_id, update_time, create_time, remark, deleted) VALUES (5, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', '["true","false"]', 'true', 0, null, 1, '2022-10-05 22:18:57', '2022-05-21 08:30:55', '是否开启注册用户功能true开启false关闭', 0);
create table sys_dept
(
dept_id bigint auto_increment comment '部门id'
primary key,
parent_id bigint default 0 not null comment '父部门id',
ancestors text not null comment '祖级列表',
dept_name varchar(64) default '' not null comment '部门名称',
order_num int default 0 not null comment '显示顺序',
leader_id bigint null,
leader_name varchar(64) null comment '负责人',
phone varchar(16) null comment '联系电话',
email varchar(128) null comment '邮箱',
status smallint default 0 not null comment '部门状态0停用 1启用',
creator_id bigint null comment '创建者ID',
create_time datetime null comment '创建时间',
updater_id bigint null comment '更新者ID',
update_time datetime null comment '更新时间',
deleted tinyint(1) default 0 not null comment '逻辑删除'
)
comment '部门表';
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (1, 0, '0', 'AgileBoot科技', 0, null, 'valarchie', '15888888888', 'valarchie@163.com', 1, null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (2, 1, '0,1', '深圳总公司', 1, null, 'valarchie', '15888888888', 'valarchie@163.com', 1, null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (3, 1, '0,1', '长沙分公司', 2, null, 'valarchie', '15888888888', 'valarchie@163.com', 1, null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (4, 2, '0,1,2', '研发部门', 1, null, 'valarchie', '15888888888', 'valarchie@163.com', 1, null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (5, 2, '0,1,2', '市场部门', 2, null, 'valarchie', '15888888888', 'valarchie@163.com', 0, null, '2022-05-21 08:30:54', 1, '2023-07-20 22:46:41', 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (6, 2, '0,1,2', '测试部门', 3, null, 'valarchie', '15888888888', 'valarchie@163.com', 1, null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (7, 2, '0,1,2', '财务部门', 4, null, 'valarchie', '15888888888', 'valarchie@163.com', 1, null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (8, 2, '0,1,2', '运维部门', 5, null, 'valarchie', '15888888888', 'valarchie@163.com', 1, null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (9, 3, '0,1,3', '市场部!', 1, null, 'valarchie!!', '15888188888', 'valarc1hie@163.com', 0, null, '2022-05-21 08:30:54', 1, '2023-07-20 22:33:31', 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (10, 3, '0,1,3', '财务部门', 2, null, 'valarchie', '15888888888', 'valarchie@163.com', 0, null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (203, 1, '0,1', '12312321', 3, null, '123213123', '18849986671', '1234243@234324.com', 0, 1, '2023-07-20 22:11:06', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (204, 0, '0', '124234', 3, null, '23434', '18849976678', '23423@4234.com', 0, 1, '2023-07-20 22:12:36', null, null, 1);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (205, 1, '0,1', '1234123', 3, null, '234234', '18849976671', '234243@423423.com', 1, 1, '2023-07-20 22:20:29', null, null, 0);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (206, 0, '0', '234324', 3, null, '23423423', '18859976672', '23423@43234.com', 1, 1, '2023-07-20 22:47:08', null, null, 1);
INSERT INTO sys_dept (dept_id, parent_id, ancestors, dept_name, order_num, leader_id, leader_name, phone, email, status, creator_id, create_time, updater_id, update_time, deleted) VALUES (207, 0, '0', '', 0, null, '', '', '', 1, 1, '2023-07-21 21:31:53', null, null, 1);
create table sys_login_info
(
info_id bigint auto_increment comment '访问ID'
primary key,
username varchar(50) default '' not null comment '用户账号',
ip_address varchar(128) default '' not null comment '登录IP地址',
login_location varchar(255) default '' not null comment '登录地点',
browser varchar(50) default '' not null comment '浏览器类型',
operation_system varchar(50) default '' not null comment '操作系统',
status smallint default 0 not null comment '登录状态1成功 0失败',
msg varchar(255) default '' not null comment '提示消息',
login_time datetime null comment '访问时间',
deleted tinyint(1) default 0 not null comment '逻辑删除'
)
comment '系统访问记录';
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (415, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-06-29 22:49:37', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (416, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-02 22:12:30', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (417, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 0, '验证码过期', '2023-07-02 22:16:06', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (418, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-02 22:16:16', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (531, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 0, '验证码过期', '2023-07-18 22:17:08', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (532, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-18 22:17:16', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (533, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-18 22:58:15', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (534, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 09:51:12', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (535, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 10:23:03', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (536, 'admin', '127.0.0.1', '内网IP', 'Firefox 11', 'Mac OS X', 0, '验证码错误', '2023-07-19 10:23:24', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (537, 'admin', '127.0.0.1', '内网IP', 'Firefox 11', 'Mac OS X', 1, '登录成功', '2023-07-19 10:23:28', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (538, 'admin', '127.0.0.1', '内网IP', 'Firefox 11', 'Mac OS X', 1, '登录成功', '2023-07-19 10:26:31', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (539, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 10:26:48', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (540, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 14:08:44', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (541, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 17:34:45', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (542, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 18:06:45', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (543, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 0, '验证码错误', '2023-07-19 22:11:58', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (544, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 22:12:02', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (545, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 23:07:22', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (546, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-19 23:08:21', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (547, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 08:53:18', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (548, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 08:55:58', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (549, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 0, '验证码错误', '2023-07-20 10:35:02', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (550, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 10:35:05', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (551, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 12:03:43', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (552, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 14:00:48', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (553, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 14:39:42', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (554, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 15:44:34', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (555, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 17:03:42', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (556, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-20 18:55:18', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (557, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 10:04:25', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (558, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 12:48:57', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (559, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 12:58:33', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (560, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 15:23:52', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (561, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 15:36:05', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (562, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 19:41:28', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (563, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 20:11:44', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (564, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 21:25:33', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (565, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-21 22:42:57', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (566, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-22 09:24:07', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (567, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-22 12:18:41', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (568, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-22 14:20:54', 0);
INSERT INTO sys_login_info (info_id, username, ip_address, login_location, browser, operation_system, status, msg, login_time, deleted) VALUES (569, 'admin', '127.0.0.1', '内网IP', 'Chrome 11', 'Mac OS X', 1, '登录成功', '2023-07-22 15:38:53', 0);
create table sys_menu
(
menu_id bigint auto_increment comment '菜单ID'
primary key,
menu_name varchar(64) not null comment '菜单名称',
menu_type smallint default 0 not null comment '菜单的类型(1为普通菜单2为目录3为内嵌iFrame4为外链跳转)',
router_name varchar(255) default '' not null comment '路由名称需保持和前端对应的vue文件中的name保持一致defineOptions方法中设置的name',
parent_id bigint default 0 not null comment '父菜单ID',
path varchar(255) null comment '组件路径对应前端项目view文件夹中的路径',
is_button tinyint(1) default 0 not null comment '是否按钮',
permission varchar(128) null comment '权限标识',
meta_info varchar(1024) default '{}' not null comment '路由元信息(前端根据这个信息进行逻辑处理)',
status smallint default 0 not null comment '菜单状态1启用 0停用',
remark varchar(256) default '' null comment '备注',
creator_id bigint null comment '创建者ID',
create_time datetime null comment '创建时间',
updater_id bigint null comment '更新者ID',
update_time datetime null comment '更新时间',
deleted tinyint(1) default 0 not null comment '逻辑删除'
)
comment '菜单权限表';
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (1, '系统管理', 2, '', 0, '/system', 0, '', '{"title":"系统管理", "rank":"1"}', 1, '系统管理目录', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2, '系统监控', 2, '', 0, '/monitor', 0, '', '{"title":"系统监控", "rank":"3"}', 1, '系统监控目录', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (3, '系统工具', 2, '', 0, '/tool', 0, '', '{"title":"系统工具", "rank":"2"}', 1, '系统工具目录', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (4, 'AgileBoot官网', 3, 'OfficialWeb', 0, '/test', 0, '', '{"title":"AgileBoot官网","frameSrc": "https://element-plus.org/zh-CN/", "rank":"8"}', 1, 'Agileboot官网地址', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (5, '用户管理', 1, 'SystemUser', 1, '/system/user/index', 0, 'system:user:list', '{"title":"用户管理"}', 1, '用户管理菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (6, '角色管理', 1, 'SystemRole', 1, '/system/role/index', 0, 'system:role:list', '{"title":"角色管理"}', 1, '角色管理菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (7, '菜单管理', 1, 'MenuManagement', 1, '/system/menu/index', 0, 'system:menu:list', '{"title":"菜单管理"}', 1, '菜单管理菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (8, '部门管理', 1, 'Department', 1, '/system/dept/index', 0, 'system:dept:list', '{"title":"部门管理"}', 1, '部门管理菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (9, '岗位管理', 1, 'Post', 1, '/system/post/index', 0, 'system:post:list', '{"title":"岗位管理"}', 1, '岗位管理菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (10, '参数设置', 1, 'Config', 1, '/system/config/index', 0, 'system:config:list', '{"title":"参数设置"}', 1, '参数设置菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (11, '通知公告', 1, 'SystemNotice', 1, '/system/notice/index', 0, 'system:notice:list', '{"title":"通知公告"}', 1, '通知公告菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (12, '日志管理', 1, 'LogManagement', 1, '/system/logd', 0, '', '{"title":"日志管理"}', 1, '日志管理菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (13, '在线用户', 1, 'OnlineUser', 2, '/monitor/onlineUser/index', 0, 'monitor:online:list', '{"title":"在线用户"}', 1, '在线用户菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (14, '数据监控', 1, 'DataMonitor', 2, '/monitor/druid/index', 0, 'monitor:druid:list', '{"title":"数据库监控","frameSrc": "/druid/login.html", "isFrameSrcInternal": true}', 1, '数据监控菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (15, '服务监控', 1, 'ServerInfo', 2, '/monitor/server/index', 0, 'monitor:server:list', '{"title":"服务器监控"}', 1, '服务监控菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (16, '缓存监控', 1, 'CacheInfo', 2, '/monitor/cache/index', 0, 'monitor:cache:list', '{"title":"缓存监控"}', 1, '缓存监控菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (17, '系统接口', 1, 'SystemAPI', 3, '/tool/swagger/index', 0, 'tool:swagger:list', '{"title":"接口文档","showParent":"true","frameSrc": "/swagger-ui/index.html", "isFrameSrcInternal": true}', 1, '系统接口菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (18, '操作日志', 1, 'OperationLog', 12, '/system/log/operationLog/index', 0, 'monitor:operlog:list', '{"title":"操作日志"}', 1, '操作日志菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (19, '登录日志', 1, 'LoginLog', 12, '/system/log/loginLog/index', 0, 'monitor:logininfor:list', '{"title":"登录日志"}', 1, '登录日志菜单', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (20, '用户查询', 0, ' ', 5, '', 1, 'system:user:query', '{"title":"用户查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (21, '用户新增', 0, ' ', 5, '', 1, 'system:user:add', '{"title":"用户新增"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (22, '用户修改', 0, ' ', 5, '', 1, 'system:user:edit', '{"title":"用户修改"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (23, '用户删除', 0, ' ', 5, '', 1, 'system:user:remove', '{"title":"用户删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (24, '用户导出', 0, ' ', 5, '', 1, 'system:user:export', '{"title":"用户导出"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (25, '用户导入', 0, ' ', 5, '', 1, 'system:user:import', '{"title":"用户导入"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (26, '重置密码', 0, ' ', 5, '', 1, 'system:user:resetPwd', '{"title":"重置密码"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (27, '角色查询', 0, ' ', 6, '', 1, 'system:role:query', '{"title":"角色查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (28, '角色新增', 0, ' ', 6, '', 1, 'system:role:add', '{"title":"角色新增"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (29, '角色修改', 0, ' ', 6, '', 1, 'system:role:edit', '{"title":"角色修改"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (30, '角色删除', 0, ' ', 6, '', 1, 'system:role:remove', '{"title":"角色删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (31, '角色导出', 0, ' ', 6, '', 1, 'system:role:export', '{"title":"角色导出"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (32, '菜单查询', 0, ' ', 7, '', 1, 'system:menu:query', '{"title":"菜单查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (33, '菜单新增', 0, ' ', 7, '', 1, 'system:menu:add', '{"title":"菜单新增"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (34, '菜单修改', 0, ' ', 7, '', 1, 'system:menu:edit', '{"title":"菜单修改"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (35, '菜单删除', 0, ' ', 7, '', 1, 'system:menu:remove', '{"title":"菜单删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (36, '部门查询', 0, ' ', 8, '', 1, 'system:dept:query', '{"title":"部门查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (37, '部门新增', 0, ' ', 8, '', 1, 'system:dept:add', '{"title":"部门新增"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (38, '部门修改', 0, ' ', 8, '', 1, 'system:dept:edit', '{"title":"部门修改"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (39, '部门删除', 0, ' ', 8, '', 1, 'system:dept:remove', '{"title":"部门删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (40, '岗位查询', 0, ' ', 9, '', 1, 'system:post:query', '{"title":"岗位查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (41, '岗位新增', 0, ' ', 9, '', 1, 'system:post:add', '{"title":"岗位新增"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (42, '岗位修改', 0, ' ', 9, '', 1, 'system:post:edit', '{"title":"岗位修改"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (43, '岗位删除', 0, ' ', 9, '', 1, 'system:post:remove', '{"title":"岗位删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (44, '岗位导出', 0, ' ', 9, '', 1, 'system:post:export', '{"title":"岗位导出"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (45, '参数查询', 0, ' ', 10, '', 1, 'system:config:query', '{"title":"参数查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (46, '参数新增', 0, ' ', 10, '', 1, 'system:config:add', '{"title":"参数新增"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (47, '参数修改', 0, ' ', 10, '', 1, 'system:config:edit', '{"title":"参数修改"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (48, '参数删除', 0, ' ', 10, '', 1, 'system:config:remove', '{"title":"参数删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (49, '参数导出', 0, ' ', 10, '', 1, 'system:config:export', '{"title":"参数导出"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (50, '公告查询', 0, ' ', 11, '', 1, 'system:notice:query', '{"title":"公告查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (51, '公告新增', 0, ' ', 11, '', 1, 'system:notice:add', '{"title":"公告新增"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (52, '公告修改', 0, ' ', 11, '', 1, 'system:notice:edit', '{"title":"公告修改"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (53, '公告删除', 0, ' ', 11, '', 1, 'system:notice:remove', '{"title":"公告删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (54, '操作查询', 0, ' ', 18, '', 1, 'monitor:operlog:query', '{"title":"操作查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (55, '操作删除', 0, ' ', 18, '', 1, 'monitor:operlog:remove', '{"title":"操作删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (56, '日志导出', 0, ' ', 18, '', 1, 'monitor:operlog:export', '{"title":"日志导出"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (57, '登录查询', 0, ' ', 19, '', 1, 'monitor:logininfor:query', '{"title":"登录查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (58, '登录删除', 0, ' ', 19, '', 1, 'monitor:logininfor:remove', '{"title":"登录删除"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (59, '日志导出', 0, ' ', 19, '', 1, 'monitor:logininfor:export', '{"title":"日志导出","rank":22}', 1, '', 0, '2022-05-21 08:30:54', 1, '2023-07-22 17:02:28', 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (60, '在线查询', 0, ' ', 13, '', 1, 'monitor:online:query', '{"title":"在线查询"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (61, '批量强退', 0, ' ', 13, '', 1, 'monitor:online:batchLogout', '{"title":"批量强退"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (62, '单条强退', 0, ' ', 13, '', 1, 'monitor:online:forceLogout', '{"title":"单条强退"}', 1, '', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (63, 'AgileBoot Github地址', 4, 'https://github.com/valarchie/AgileBoot-Back-End', 0, '/external', 0, '', '{"title":"Github地址", "rank":"9"}', 1, 'Agileboot github地址', 0, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2031, '测试外链跳转1', 4, 'http://element-plus.org/', 2045, '/ceshiwailiantiaozhuan1OutsideLink', 0, 'fdfsxxxx', '{"title":"测试外链跳转1","showParent":true,"rank":1}', 1, '', 1, '2023-07-22 12:29:31', 1, '2023-07-22 16:28:45', 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2032, '测试外链跳转2', 4, 'https://github.com/pure-admin/vue-pure-admin/issues/624', 0, '/ceshiwailiantiaozhuan2OutsideLink', 0, 'fsdfsdf', '{"title":"测试外链跳转2","showParent":true,"rank":455}', 1, '', 1, '2023-07-22 12:30:10', 1, '2023-07-22 16:24:38', 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2033, '测试内嵌Iframe外链', 3, 'ceshineiqianIframewailianIframeRouter', 0, '/ceshineiqianIframewailianIframeLink', 0, 'sdfdsf', '{"title":"测试内嵌Iframe外链","showParent":true,"frameSrc":"http://element-plus.org/zh-CN/","rank":444}', 1, '', 1, '2023-07-22 14:21:40', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2034, '测试内嵌Iframe内链', 3, 'ceshineiqianIframeneilianIframeRouter', 0, '/ceshineiqianIframeneilianIframeLink', 0, 'sdffdf', '{"title":"测试内嵌Iframe内链","showParent":true,"frameSrc":"/druid/login.html","isFrameSrcInternal":true,"rank":444}', 1, '', 1, '2023-07-22 14:22:29', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2035, '一级目录', 2, '', 0, '/yijimulu', 0, 'fsdf', '{"title":"一级目录","showParent":true,"rank":444}', 1, '', 1, '2023-07-22 14:25:55', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2036, '一级菜单xx', 1, 'dsffdsxxxxxxxfsdfsdfroute', 0, '/system/role/index', 0, 'sdfdsfxxx', '{"title":"一级菜单xx","showParent":true,"rank":333}', 1, '', 1, '2023-07-22 14:45:31', 1, '2023-07-22 16:30:30', 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2040, '测试按钮11', 0, '', 2035, '', 1, 'sffsdf11', '{"title":"测试按钮11","rank":313}', 1, '', 1, '2023-07-22 15:11:09', 1, '2023-07-22 17:04:34', 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2041, '测试按钮', 0, '', 2036, '', 1, 'fsfsfsd', '{"title":"测试按钮","rank":333}', 1, '', 1, '2023-07-22 15:11:37', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2044, '角色管理', 1, 'rolerouter111', 2035, '/system/dept/index', 0, 'fsfsdfsdfsd11', '{"title":"角色管理","showParent":true,"rank":33}', 1, '', 1, '2023-07-22 15:43:04', 1, '2023-07-22 17:04:16', 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2045, '二级目录11', 2, '', 2035, '/erjimulu11', 0, 'sdfsdfsdf11', '{"title":"二级目录11","showParent":true,"rank":331}', 0, '', 1, '2023-07-22 15:43:49', 1, '2023-07-22 17:05:06', 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2046, '职位管理', 1, 'porstrouter', 2045, '/system/post/index', 0, 'xzcxc', '{"title":"职位管理","showParent":true,"rank":33}', 1, '', 1, '2023-07-22 15:45:01', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2047, '内嵌Iframe2测试', 3, 'neiqianIframe2ceshiIframeRouter', 2035, '/neiqianIframe2ceshiIframeLink', 0, 'sdfdfsd11', '{"title":"内嵌Iframe2测试","showParent":true,"frameSrc":"http://element-plus.org/zh-CN/11","rank":22}', 1, '', 1, '2023-07-22 15:48:44', 1, '2023-07-22 17:04:45', 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2049, '外链跳转测试', 4, 'http://element-plus.org/zh-CN/', 2035, '/external', 0, '', '{"title":"外链跳转测试","rank":333}', 1, '', 1, '2023-07-22 15:49:43', null, null, 0);
INSERT INTO sys_menu (menu_id, menu_name, menu_type, router_name, parent_id, path, is_button, permission, meta_info, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2050, '测试外链3', 4, 'https://element-plus.org/zh-CN/', 2045, '/external', 0, 'fsdfsd', '{"title":"测试外链3","showParent":true,"rank":33}', 1, '', 1, '2023-07-22 16:54:46', null, null, 0);
create table sys_notice
(
notice_id int auto_increment comment '公告ID'
primary key,
notice_title varchar(64) not null comment '公告标题',
notice_type smallint not null comment '公告类型1通知 2公告',
notice_content text null comment '公告内容',
status smallint default 0 not null comment '公告状态1正常 0关闭',
creator_id bigint not null comment '创建者ID',
create_time datetime null comment '创建时间',
updater_id bigint null comment '更新者ID',
update_time datetime null comment '更新时间',
remark varchar(255) default '' not null comment '备注',
deleted tinyint(1) default 0 not null comment '逻辑删除'
)
comment '通知公告表';
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (1, '温馨提醒2018-07-01 AgileBoot新版本发布啦', 2, '新版本内容~~~~~~~~~~', 1, 1, '2022-05-21 08:30:55', 1, '2022-08-29 20:12:37', '管理员', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (2, '维护通知2018-07-01 AgileBoot系统凌晨维护', 1, '维护内容', 1, 1, '2022-05-21 08:30:55', null, null, '管理员', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (31, '12312312xxxxx', 1, '12313123', 1, 1, '2023-07-11 10:33:17', 1, '2023-07-12 09:18:38', '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (32, '2342423', 1, '23423423432', 0, 1, '2023-07-11 21:29:17', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (33, '234324234', 2, '2342342343', 0, 1, '2023-07-11 21:30:28', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (34, '43214234', 1, '23423434324xxxxxxx', 0, 1, '2023-07-11 21:31:12', 1, '2023-07-11 22:21:44', '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (35, '23423432', 1, '234234234234xxxxx', 0, 1, '2023-07-11 21:31:18', 1, '2023-07-11 22:21:39', '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (36, '23423423', 1, '234234234234234', 0, 1, '2023-07-11 21:31:26', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (37, '12334', 1, '23423432', 1, 1, '2023-07-11 21:31:40', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (38, '234324', 1, '23424234', 0, 1, '2023-07-11 21:32:05', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (39, '123123', 1, '234234234', 0, 1, '2023-07-11 21:59:29', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (40, '12312321', 1, 'dd', 0, 1, '2023-07-11 22:11:44', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (41, '23423432', 2, '423423432', 1, 1, '2023-07-11 22:12:26', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (42, '14423', 2, '1312312对对对对对对', 1, 1, '2023-07-12 09:02:43', 1, '2023-07-12 09:44:30', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (43, 'for test', 2, '21344234324', 0, 1, '2023-07-12 09:46:08', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (44, '2143234234', 2, '234234234234234234', 0, 1, '2023-07-12 09:46:18', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (45, 'just for test', 2, '123123123', 1, 1, '2023-07-12 09:46:31', 1, '2023-07-12 09:46:40', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (46, '3432432xxx', 2, '1231231231xxx', 1, 1, '2023-07-12 14:07:49', 1, '2023-07-12 14:08:29', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (47, '234234xxx', 1, 'xxxxxx', 0, 1, '2023-07-12 14:08:07', 1, '2023-07-12 14:08:29', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (48, '234324xxxx', 2, '123123123', 1, 1, '2023-07-12 20:09:13', 1, '2023-07-13 10:09:25', '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (49, '23432cxxxx', 1, 'xcvxcvcvxcv', 0, 1, '2023-07-13 09:52:23', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (50, '2323', 1, 'xxxxx', 1, 1, '2023-07-13 09:54:44', 1, '2023-07-13 10:02:09', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (51, 'scsfdsfsd', 2, 'xxsdfdsfsdf', 1, 1, '2023-07-13 10:05:51', 1, '2023-07-13 10:06:02', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (52, 'dsadsd', 2, 'asdasdasdxxxx', 0, 1, '2023-07-13 10:05:57', 1, '2023-07-13 10:06:02', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (53, 'sdfsdf', 1, 'sdfdsfsdfsd', 0, 1, '2023-07-13 10:06:08', 1, '2023-07-13 10:06:10', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (54, '312321', 1, '123123', 0, 1, '2023-07-14 15:24:19', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (55, '123', 1, '12312312', 0, 1, '2023-07-14 15:59:42', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (56, '1234xxcsds', 2, 'dfsdfsdfdsf', 1, 1, '2023-07-14 18:21:59', null, null, '', 0);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (57, 'sdfdsfds', 2, 'sdfsdfsdfsdf', 1, 1, '2023-07-14 18:22:05', 1, '2023-07-14 18:22:28', '', 1);
INSERT INTO sys_notice (notice_id, notice_title, notice_type, notice_content, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (58, 'asdasdsad', 1, 'asdasddas', 0, 1, '2023-07-14 18:22:11', 1, '2023-07-14 18:22:28', '', 1);
create table sys_operation_log
(
operation_id bigint auto_increment comment '日志主键'
primary key,
business_type smallint default 0 not null comment '业务类型0其它 1新增 2修改 3删除',
request_method smallint default 0 not null comment '请求方式',
request_module varchar(64) default '' not null comment '请求模块',
request_url varchar(256) default '' not null comment '请求URL',
called_method varchar(128) default '' not null comment '调用方法',
operator_type smallint default 0 not null comment '操作类别0其它 1后台用户 2手机端用户',
user_id bigint default 0 null comment '用户ID',
username varchar(32) default '' null comment '操作人员',
operator_ip varchar(128) default '' null comment '操作人员ip',
operator_location varchar(256) default '' null comment '操作地点',
dept_id bigint default 0 null comment '部门ID',
dept_name varchar(64) null comment '部门名称',
operation_param varchar(2048) default '' null comment '请求参数',
operation_result varchar(2048) default '' null comment '返回参数',
status smallint default 1 not null comment '操作状态1正常 0异常',
error_stack varchar(2048) default '' null comment '错误消息',
operation_time datetime not null comment '操作时间',
deleted tinyint(1) default 0 not null comment '逻辑删除'
)
comment '操作日志记录';
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (379, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"123123","noticeContent":"12313123","status":"1"},', '', 1, '', '2023-07-11 10:33:17', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (380, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 21:19:42', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (381, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 21:25:07', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (382, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"2342423","noticeContent":"23423423432","status":"0"},', '', 1, '', '2023-07-11 21:29:17', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (383, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"234324234","noticeContent":"2342342343","status":"0"},', '', 1, '', '2023-07-11 21:30:28', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (384, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"43214234","noticeContent":"23423434324","status":"0"},', '', 1, '', '2023-07-11 21:31:12', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (385, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"23423432","noticeContent":"234234234234","status":"0"},', '', 1, '', '2023-07-11 21:31:18', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (386, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"23423423","noticeContent":"234234234234234","status":"0"},', '', 1, '', '2023-07-11 21:31:26', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (387, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin1', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"12334","noticeContent":"23423432","status":"1"},', '', 1, '', '2023-07-11 21:31:40', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (388, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin1', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"234324","noticeContent":"23424234","status":"0"},', '', 1, '', '2023-07-11 21:32:05', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (389, 1, 2, '公告通知', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"123123","noticeContent":"234234234","status":"0"},', '', 1, '', '2023-07-11 21:59:29', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (390, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:00:52', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (391, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:00:59', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (392, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:05:45', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (393, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:05:50', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (394, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"12312321","noticeContent":"dd","status":"0"},', '', 1, '', '2023-07-11 22:11:44', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (395, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:11:48', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (396, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:11:55', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (397, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"23423432","noticeContent":"423423432","status":"1"},', '', 1, '', '2023-07-11 22:12:26', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (398, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:12:30', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (399, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:12:53', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (400, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 0, '找不到ID为 null 的 通知公告', '2023-07-11 22:12:55', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (401, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-11 22:21:39', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (402, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-11 22:21:44', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (403, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"14423","noticeContent":"1312312对对对对对对","status":"1"},', '', 1, '', '2023-07-12 09:02:43', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (404, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-12 09:18:38', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (405, 3, 4, '通知公告', '/system/notice/42', 'com.agileboot.admin.controller.system.SysNoticeController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{noticeIds=42}', '', 1, '', '2023-07-12 09:44:30', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (406, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"for test","noticeContent":"21344234324","status":"0"},', '', 1, '', '2023-07-12 09:46:08', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (407, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"2143234234","noticeContent":"234234234234234234","status":"0"},', '', 1, '', '2023-07-12 09:46:18', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (408, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"just for test","noticeContent":"123123123","status":"1"},', '', 1, '', '2023-07-12 09:46:31', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (409, 3, 4, '通知公告', '/system/notice/45', 'com.agileboot.admin.controller.system.SysNoticeController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{noticeIds=45}', '', 1, '', '2023-07-12 09:46:40', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (410, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"3432432","noticeContent":"1231231231","status":"1"},', '', 1, '', '2023-07-12 14:07:49', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (411, 2, 3, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-12 14:07:56', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (412, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"234234xxx","noticeContent":"xxxxxx","status":"0"},', '', 1, '', '2023-07-12 14:08:07', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (413, 3, 4, '通知公告', '/system/notice/46,47', 'com.agileboot.admin.controller.system.SysNoticeController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{noticeIds=46,47}', '', 1, '', '2023-07-12 14:08:29', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (414, 1, 2, '通知公告', '/system/notice/', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"234324","noticeContent":"123123123","status":"0"},', '', 1, '', '2023-07-12 20:09:13', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (415, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"23432cxxxx","noticeContent":"xcvxcvcvxcv","status":"0"},', '', 1, '', '2023-07-13 09:52:23', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (416, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"2323","noticeContent":"xxxxx","status":"1"},', '', 1, '', '2023-07-13 09:54:44', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (417, 3, 4, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-13 10:02:09', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (418, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"scsfdsfsd","noticeContent":"xxsdfdsfsdf","status":"1"},', '', 1, '', '2023-07-13 10:05:51', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (419, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"dsadsd","noticeContent":"asdasdasdxxxx","status":"0"},', '', 1, '', '2023-07-13 10:05:57', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (420, 3, 4, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-13 10:06:02', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (421, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"sdfsdf","noticeContent":"sdfdsfsdfsd","status":"0"},', '', 1, '', '2023-07-13 10:06:08', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (422, 3, 4, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-13 10:06:10', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (423, 2, 3, '通知公告', '/system/notices/48', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{noticeId=48}', '', 1, '', '2023-07-13 10:09:11', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (424, 2, 3, '通知公告', '/system/notices/48', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{noticeId=48}', '', 1, '', '2023-07-13 10:09:17', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (425, 2, 3, '通知公告', '/system/notices/48', 'com.agileboot.admin.controller.system.SysNoticeController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{noticeId=48}', '', 1, '', '2023-07-13 10:09:25', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (426, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"312321","noticeContent":"123123","status":"0"},', '', 1, '', '2023-07-14 15:24:19', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (427, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"123","noticeContent":"12312312","status":"0"},', '', 1, '', '2023-07-14 15:59:42', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (428, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"1234xxcsds","noticeContent":"dfsdfsdfdsf","status":"1"},', '', 1, '', '2023-07-14 18:21:59', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (429, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"2","noticeTitle":"sdfdsfds","noticeContent":"sdfsdfsdfsdf","status":"1"},', '', 1, '', '2023-07-14 18:22:05', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (430, 1, 2, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"noticeType":"1","noticeTitle":"asdasdsad","noticeContent":"asdasddas","status":"0"},', '', 1, '', '2023-07-14 18:22:11', 1);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (431, 3, 4, '通知公告', '/system/notices', 'com.agileboot.admin.controller.system.SysNoticeController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-14 18:22:28', 1);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (432, 3, 4, '操作日志', '/logs/operationLogs', 'com.agileboot.admin.controller.system.SysLogsController.removeOperationLogs()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-15 16:14:45', 1);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (433, 3, 4, '操作日志', '/logs/operationLogs', 'com.agileboot.admin.controller.system.SysLogsController.removeOperationLogs()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-15 16:15:47', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (434, 3, 4, '登录日志', '/logs/loginLogs', 'com.agileboot.admin.controller.system.SysLogsController.removeLoginInfos()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-17 08:55:40', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (435, 3, 4, '登录日志', '/logs/loginLogs', 'com.agileboot.admin.controller.system.SysLogsController.removeLoginInfos()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-17 08:56:22', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (436, 3, 4, '登录日志', '/logs/loginLogs', 'com.agileboot.admin.controller.system.SysLogsController.removeLoginInfos()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-17 08:56:30', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (437, 7, 4, '在线用户', '/monitor/onlineUser/3bc5ae38-3e93-4cc4-b751-6076ffa80740', 'com.agileboot.admin.controller.monitor.MonitorController.logoutOnlineUser()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{tokenId=3bc5ae38-3e93-4cc4-b751-6076ffa80740}', '', 1, '', '2023-07-19 10:24:16', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (438, 7, 4, '在线用户', '/monitor/onlineUser/7c2ec0da-50bc-4837-a2c3-6ead278f3ec3', 'com.agileboot.admin.controller.monitor.MonitorController.logoutOnlineUser()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{tokenId=7c2ec0da-50bc-4837-a2c3-6ead278f3ec3}', '', 1, '', '2023-07-19 10:26:38', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (439, 7, 4, '在线用户', '/monitor/onlineUser/cc1d240d-bb20-4c69-baf6-89c46959da81', 'com.agileboot.admin.controller.monitor.MonitorController.logoutOnlineUser()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{tokenId=cc1d240d-bb20-4c69-baf6-89c46959da81}', '', 1, '', '2023-07-19 10:32:52', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (440, 8, 4, '参数管理', '/system/configs/cache', 'com.agileboot.admin.controller.system.SysConfigController.refreshCache()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-20 11:04:46', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (441, 8, 4, '参数管理', '/system/configs/cache', 'com.agileboot.admin.controller.system.SysConfigController.refreshCache()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{}', '', 1, '', '2023-07-20 11:04:57', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (442, 2, 3, '参数管理', '/system/config/2', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=2}', '', 0, '找不到ID为 null 的 参数配置', '2023-07-20 14:33:58', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (443, 2, 3, '参数管理', '/system/config/2', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=2}', '', 0, '找不到ID为 null 的 参数配置', '2023-07-20 14:35:40', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (444, 2, 3, '参数管理', '/system/config/2', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=2}', '', 1, '', '2023-07-20 14:37:38', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (445, 2, 3, '参数管理', '/system/config/2', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=2}', '', 1, '', '2023-07-20 14:38:44', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (446, 2, 3, '参数管理', '/system/config/2', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=2}', '', 1, '', '2023-07-20 14:39:20', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (447, 2, 3, '参数管理', '/system/config/2', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=2}', '', 1, '', '2023-07-20 14:39:25', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (448, 2, 3, '参数管理', '/system/config/2', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=2}', '', 1, '', '2023-07-20 14:39:31', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (449, 2, 3, '参数管理', '/system/config/4', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=4}', '', 1, '', '2023-07-20 14:39:36', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (450, 2, 3, '参数管理', '/system/config/2', 'com.agileboot.admin.controller.system.SysConfigController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{configId=2}', '', 1, '', '2023-07-20 14:42:08', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (451, 1, 2, '部门管理', '/system/dept', 'com.agileboot.admin.controller.system.SysDeptController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"deptName":"12312321","orderNum":3,"parentId":1,"leaderName":"123213123","phone":"18849986671","email":"1234243@234324.com"},', '', 1, '', '2023-07-20 22:11:06', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (452, 1, 2, '部门管理', '/system/dept', 'com.agileboot.admin.controller.system.SysDeptController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"deptName":"124234","orderNum":3,"parentId":0,"leaderName":"23434","phone":"18849976678","email":"23423@4234.com"},', '', 1, '', '2023-07-20 22:12:36', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (453, 1, 2, '部门管理', '/system/dept', 'com.agileboot.admin.controller.system.SysDeptController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"deptName":"1234123","orderNum":3,"parentId":1,"leaderName":"234234","phone":"18849976671","email":"234243@423423.com","status":1},', '', 1, '', '2023-07-20 22:20:30', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (454, 2, 3, '部门管理', '/system/dept/undefined', 'com.agileboot.admin.controller.system.SysDeptController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=undefined}', '', 0, '找不到ID为 null 的 部门', '2023-07-20 22:27:47', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (455, 2, 3, '部门管理', '/system/dept/9', 'com.agileboot.admin.controller.system.SysDeptController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=9}', '', 1, '', '2023-07-20 22:33:12', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (456, 2, 3, '部门管理', '/system/dept/9', 'com.agileboot.admin.controller.system.SysDeptController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=9}', '', 1, '', '2023-07-20 22:33:16', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (457, 2, 3, '部门管理', '/system/dept/9', 'com.agileboot.admin.controller.system.SysDeptController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=9}', '', 1, '', '2023-07-20 22:33:20', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (458, 2, 3, '部门管理', '/system/dept/9', 'com.agileboot.admin.controller.system.SysDeptController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=9}', '', 1, '', '2023-07-20 22:33:31', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (459, 2, 3, '部门管理', '/system/dept/5', 'com.agileboot.admin.controller.system.SysDeptController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=5}', '', 1, '', '2023-07-20 22:46:41', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (460, 1, 2, '部门管理', '/system/dept', 'com.agileboot.admin.controller.system.SysDeptController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"deptName":"234324","orderNum":3,"parentId":0,"leaderName":"23423423","phone":"18859976672","email":"23423@43234.com","status":1},', '', 1, '', '2023-07-20 22:47:08', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (461, 3, 4, '部门管理', '/system/dept/206', 'com.agileboot.admin.controller.system.SysDeptController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=206}', '', 1, '', '2023-07-20 22:50:49', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (462, 3, 4, '部门管理', '/system/dept/204', 'com.agileboot.admin.controller.system.SysDeptController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=204}', '', 1, '', '2023-07-20 22:52:02', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (463, 1, 2, '部门管理', '/system/dept', 'com.agileboot.admin.controller.system.SysDeptController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"deptName":"","orderNum":0,"parentId":0,"leaderName":"","phone":"","email":"","status":1},', '', 1, '', '2023-07-21 21:31:53', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (464, 3, 4, '部门管理', '/system/dept/207', 'com.agileboot.admin.controller.system.SysDeptController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{deptId=207}', '', 1, '', '2023-07-21 21:32:23', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (465, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"百度官网","permission":"","parentId":0,"path":"","isButton":false,"meta":{"rank":3},"menuType":4,"status":1},', '', 1, '', '2023-07-21 21:44:34', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (466, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"百度网站","permission":"baidu permission","parentId":0,"path":"/bai3du4wang3zhan4outsideLink","isButton":false,"meta":{"rank":3},"menuType":4,"status":1},', '', 1, '', '2023-07-21 22:04:56', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (467, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"百度官网","permission":"baidu permission","parentId":0,"path":"/baiduguanwangoutsideLink","isButton":false,"meta":{"rank":3},"menuType":4,"status":1},', '', 1, '', '2023-07-21 22:07:59', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (468, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"百度官网","permission":"baidu-permission","parentId":0,"path":"/baiduguanwangoutsideLink","isButton":false,"routerName":"www.baidu.com","meta":{"rank":3},"menuType":4,"status":1},', '', 1, '', '2023-07-21 22:13:18', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (469, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"百度网站","permission":"baidu-permission","parentId":0,"path":"/baiduwangzhanoutsideLink","isButton":false,"routerName":"www.baidu.com","meta":{"rank":3},"menuType":4,"status":1},', '', 1, '', '2023-07-21 22:22:38', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (470, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"百度官网","permission":"baidu-permision","parentId":0,"path":"/baiduguanwangoutsideLink","isButton":false,"routerName":"www.baidu.com","meta":{"title":"百度官网","rank":3},"menuType":4,"status":1},', '', 1, '', '2023-07-21 22:25:13', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (471, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"AG官网2","permission":"333ppp","parentId":0,"path":"","isButton":false,"routerName":"","meta":{"frameSrc":"http://www.baidu.com","title":"AG官网2","rank":3},"menuType":3,"status":1},', '', 1, '', '2023-07-21 22:49:56', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (472, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"内嵌百度","permission":"wwssdsd","parentId":0,"path":"/neiqianbaiduIframeLink","isButton":false,"routerName":"neiqianbaiduIframeRouter","meta":{"frameSrc":"http://www.baidu.com","title":"内嵌百度","rank":3},"menuType":3,"status":1},', '', 1, '', '2023-07-22 09:24:31', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (473, 3, 4, '菜单管理', '/system/menus/2014', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2014}', '', 1, '', '2023-07-22 09:28:09', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (474, 3, 4, '菜单管理', '/system/menus/2013', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2013}', '', 1, '', '2023-07-22 09:28:13', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (475, 3, 4, '菜单管理', '/system/menus/2015', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2015}', '', 1, '', '2023-07-22 09:28:15', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (476, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"内嵌鸠摩","permission":"sdfdsfsdfsd","parentId":0,"path":"/neiqianjiumoIframeLink","isButton":false,"routerName":"neiqianjiumoIframeRouter","meta":{"frameSrc":"http://www.jiumodiary.com","title":"内嵌鸠摩","rank":9},"menuType":3,"status":1},', '', 1, '', '2023-07-22 09:29:29', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (477, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"内嵌鸠摩2","permission":"sdfdfs","parentId":0,"path":"/neiqianjiumo2IframeLink","isButton":false,"routerName":"neiqianjiumo2IframeRouter","meta":{"frameSrc":"http://www.jiumodiary.com","title":"内嵌鸠摩2","rank":12},"menuType":3,"status":1},', '', 1, '', '2023-07-22 09:30:57', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (478, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"内嵌druid","permission":"2352dsffsd","parentId":0,"path":"/neiqiandruidIframeLink","isButton":false,"routerName":"neiqiandruidIframeRouter","meta":{"frameSrc":"/druid/login.html","title":"内嵌druid","isFrameSrcInternal":true,"rank":123},"menuType":3,"status":1},', '', 1, '', '2023-07-22 09:31:52', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (479, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"目录1","permission":"234234","parentId":0,"path":"","isButton":false,"routerName":"","meta":{"title":"目录1","rank":344},"menuType":2,"status":1},', '', 1, '', '2023-07-22 09:33:30', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (480, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"二级菜单","permission":"舒服3","parentId":2019,"path":"/erjicaidanIframeLink","isButton":false,"routerName":"erjicaidanIframeRouter","meta":{"frameSrc":"http://jiumodiary.com","title":"二级菜单","rank":999},"menuType":3,"status":1},', '', 1, '', '2023-07-22 09:35:32', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (481, 3, 4, '菜单管理', '/system/menus/2020', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2020}', '', 1, '', '2023-07-22 09:49:45', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (482, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"内嵌2","permission":"fsdfsdf","parentId":2019,"path":"/neiqian2IframeLink","isButton":false,"routerName":"neiqian2IframeRouter","meta":{"frameSrc":"http://jiumodiary.com","title":"内嵌2","rank":344},"menuType":3,"status":1},', '', 1, '', '2023-07-22 09:50:55', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (483, 3, 4, '菜单管理', '/system/menus/2021', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2021}', '', 1, '', '2023-07-22 09:53:32', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (484, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"内嵌22","permission":"sfdfds","parentId":2019,"path":"/neiqian22IframeLink","isButton":false,"routerName":"neiqian22IframeRouter","meta":{"frameSrc":"http://jiumodiary.com","showParent":true,"title":"内嵌22","rank":33},"menuType":3,"status":1},', '', 1, '', '2023-07-22 09:53:51', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (485, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"部门管理","permission":"fgsfgs","parentId":0,"path":"/system/dept/index","isButton":false,"routerName":"SystemDept","meta":{"showParent":true,"title":"部门管理","rank":3},"menuType":1,"status":1},', '', 1, '', '2023-07-22 09:55:46', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (486, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"岗位管理","permission":"2323","parentId":2023,"path":"/system/post/index","isButton":false,"routerName":"PostRouter","meta":{"showParent":true,"title":"岗位管理","rank":333},"menuType":1,"status":1},', '', 1, '', '2023-07-22 09:58:06', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (487, 3, 4, '菜单管理', '/system/menus/2024', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2024}', '', 1, '', '2023-07-22 09:59:42', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (488, 3, 4, '菜单管理', '/system/menus/2023', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2023}', '', 1, '', '2023-07-22 09:59:45', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (489, 3, 4, '菜单管理', '/system/menus/2019', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2019}', '', 0, '存在子菜单不允许删除', '2023-07-22 09:59:47', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (490, 3, 4, '菜单管理', '/system/menus/2022', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2022}', '', 1, '', '2023-07-22 09:59:52', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (491, 3, 4, '菜单管理', '/system/menus/2019', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2019}', '', 1, '', '2023-07-22 09:59:54', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (492, 3, 4, '菜单管理', '/system/menus/2018', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2018}', '', 1, '', '2023-07-22 09:59:55', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (493, 3, 4, '菜单管理', '/system/menus/2017', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2017}', '', 1, '', '2023-07-22 09:59:57', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (494, 3, 4, '菜单管理', '/system/menus/2016', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2016}', '', 1, '', '2023-07-22 09:59:59', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (495, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"业务管理","permission":"yewusss","parentId":0,"path":"","isButton":false,"routerName":"","meta":{"showParent":true,"title":"业务管理","rank":333},"menuType":2,"status":1},', '', 1, '', '2023-07-22 10:00:16', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (496, 3, 4, '菜单管理', '/system/menus/2025', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2025}', '', 1, '', '2023-07-22 10:08:21', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (497, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"业务管理","permission":"dfsdfs","parentId":0,"path":"/yewu","isButton":false,"routerName":"","meta":{"showParent":true,"title":"业务管理","rank":333},"menuType":2,"status":1},', '', 1, '', '2023-07-22 10:08:37', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (498, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"岗位管理","permission":"sds","parentId":2026,"path":"/system/post/index","isButton":false,"routerName":"PostRouter","meta":{"showParent":true,"title":"岗位管理","rank":311},"menuType":1,"status":1},', '', 1, '', '2023-07-22 10:09:41', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (499, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"删除按钮","permission":"dsfsdf","parentId":2027,"path":"","isButton":false,"routerName":"","meta":{"showParent":true,"title":"删除按钮","rank":34},"menuType":1,"status":1},', '', 1, '', '2023-07-22 10:12:20', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (500, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试外链跳转","permission":"dasds","parentId":0,"path":"/ceshiwailiantiaozhuanoutsideLink","isButton":false,"routerName":"element-plus.org/zh-CN/","meta":{"showParent":true,"title":"测试外链跳转","rank":111},"menuType":4,"status":1},', '', 1, '', '2023-07-22 12:25:12', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (501, 3, 4, '菜单管理', '/system/menus/2029', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2029}', '', 1, '', '2023-07-22 12:25:56', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (502, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试外链跳转","permission":"","parentId":0,"path":"/ceshiwailiantiaozhuanoutsideLink","isButton":false,"routerName":"element-plus.org/zh-CN/","meta":{"frameSrc":"http://undefined","showParent":true,"title":"测试外链跳转","rank":533},"menuType":4,"status":1},', '', 1, '', '2023-07-22 12:27:32', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (503, 3, 4, '菜单管理', '/system/menus/2030', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2030}', '', 1, '', '2023-07-22 12:29:08', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (504, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试外链跳转1","permission":"fdfs","parentId":0,"path":"/ceshiwailiantiaozhuan1outsideLink","isButton":false,"routerName":"http://element-plus.org/zh-CN/","meta":{"showParent":true,"title":"测试外链跳转1","rank":454},"menuType":4,"status":1},', '', 1, '', '2023-07-22 12:29:31', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (505, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试外链跳转2","permission":"fsdfsdf","parentId":0,"path":"/ceshiwailiantiaozhuan2outsideLink","isButton":false,"routerName":"https://element-plus.org/zh-CN/","meta":{"showParent":true,"title":"测试外链跳转2","rank":455},"menuType":4,"status":1},', '', 1, '', '2023-07-22 12:30:10', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (506, 3, 4, '菜单管理', '/system/menus/2028', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2028}', '', 1, '', '2023-07-22 12:30:35', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (507, 3, 4, '菜单管理', '/system/menus/2027', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2027}', '', 1, '', '2023-07-22 12:30:36', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (508, 3, 4, '菜单管理', '/system/menus/2026', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2026}', '', 1, '', '2023-07-22 12:30:38', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (509, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试内嵌Iframe外链","permission":"sdfdsf","parentId":0,"path":"/ceshineiqianIframewailianIframeLink","isButton":false,"routerName":"ceshineiqianIframewailianIframeRouter","meta":{"frameSrc":"http://element-plus.org/zh-CN/","showParent":true,"title":"测试内嵌Iframe外链","rank":444},"menuType":3,"status":1},', '', 1, '', '2023-07-22 14:21:40', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (510, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试内嵌Iframe内链","permission":"sdffdf","parentId":0,"path":"/ceshineiqianIframeneilianIframeLink","isButton":false,"routerName":"ceshineiqianIframeneilianIframeRouter","meta":{"frameSrc":"/druid/login.html","showParent":true,"title":"测试内嵌Iframe内链","isFrameSrcInternal":true,"rank":444},"menuType":3,"status":1},', '', 1, '', '2023-07-22 14:22:29', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (511, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"一级目录","permission":"fsdf","parentId":0,"path":"/yijimulu","isButton":false,"routerName":"","meta":{"showParent":true,"title":"一级目录","rank":444},"menuType":2,"status":1},', '', 1, '', '2023-07-22 14:25:55', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (512, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"一级菜单","permission":"sdfdsf","parentId":0,"path":"/system/post/index","isButton":false,"routerName":"dsffdsfsdfsdfroute","meta":{"showParent":true,"title":"一级菜单","rank":444},"menuType":1,"status":1},', '', 1, '', '2023-07-22 14:45:31', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (513, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试按钮","permission":"sdfsdfds","parentId":2031,"path":"","isButton":false,"routerName":"","meta":{"showParent":true,"title":"测试按钮","rank":3},"status":1},', '', 0, '
### Error updating database. Cause: java.sql.SQLException: Field \'menu_type\' doesn\'t have a default value
### The error may exist in com/agileboot/orm/system/mapper/SysMenuMapper.java (best guess)
### The error may involve com.agileboot.orm.system.mapper.SysMenuMapper.insert-Inline
### The error occurred while setting parameters
### SQL: INSERT INTO sys_menu ( menu_name, router_name, parent_id, path, is_button, permission, meta_info, `status`, creator_id, create_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ', '2023-07-22 14:58:57', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (514, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试按钮","permission":"sdfsdfds","parentId":2031,"path":"","isButton":false,"routerName":"","meta":{"showParent":true,"title":"测试按钮","rank":3},"status":1},', '', 1, '', '2023-07-22 15:00:19', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (515, 3, 4, '菜单管理', '/system/menus/2037', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2037}', '', 1, '', '2023-07-22 15:00:53', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (516, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"323223","permission":"232323","parentId":2031,"path":"","isButton":false,"routerName":"","meta":{"showParent":true,"title":"323223","rank":444},"status":1},', '', 1, '', '2023-07-22 15:01:08', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (517, 3, 4, '菜单管理', '/system/menus/2038', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2038}', '', 1, '', '2023-07-22 15:03:03', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (518, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"按钮","permission":"sdfsdfdsf","parentId":2031,"path":"","isButton":false,"routerName":"","meta":{"showParent":true,"title":"按钮","rank":333},"status":1},', '', 1, '', '2023-07-22 15:03:58', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (519, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"按钮","permission":"sdfsdfdsf","parentId":2031,"path":"","isButton":true,"routerName":"","meta":{"showParent":true,"title":"按钮","rank":333},"status":1},', '', 0, '新增菜单:{} 失败,菜单名称已存在', '2023-07-22 15:04:18', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (520, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"按钮2","permission":"sdfsdfdsf","parentId":2031,"path":"","isButton":true,"routerName":"","meta":{"showParent":true,"title":"按钮2","rank":333},"status":1},', '', 0, '不允许在Iframe和外链跳转类型下创建按钮', '2023-07-22 15:04:49', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (521, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"按钮2","permission":"sdfsdfdsf","parentId":2031,"path":"","isButton":true,"routerName":"","meta":{"showParent":true,"title":"按钮2","rank":333},"status":1},', '', 0, '不允许在Iframe和外链跳转类型下创建按钮', '2023-07-22 15:04:56', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (522, 3, 4, '菜单管理', '/system/menus/2039', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2039}', '', 1, '', '2023-07-22 15:06:46', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (523, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试按钮","permission":"sffsdf","parentId":2035,"path":"","isButton":true,"routerName":"","meta":{"title":"测试按钮","rank":33},"status":1},', '', 1, '', '2023-07-22 15:11:09', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (524, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试按钮","permission":"fsfsfsd","parentId":2036,"path":"","isButton":true,"routerName":"","meta":{"title":"测试按钮","rank":333},"status":1},', '', 1, '', '2023-07-22 15:11:37', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (525, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"测试ifram","permission":"fssfds","parentId":2036,"path":"/ceshiiframIframeLink","isButton":false,"routerName":"ceshiiframIframeRouter","meta":{"frameSrc":"http://element-plus.org/zh-CN/","showParent":true,"title":"测试ifram","rank":0},"menuType":3,"status":1},', '', 1, '', '2023-07-22 15:18:49', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (526, 3, 4, '菜单管理', '/system/menus/2042', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2042}', '', 1, '', '2023-07-22 15:39:17', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (527, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"a\'s\'d\'d\'f\'s\'d","permission":"s\'d\'f\'s\'d\'f","parentId":2036,"path":"s\'d\'f\'s\'d\'f\'s\'d\'f","isButton":false,"routerName":"","meta":{"showParent":true,"title":"a\'s\'d\'d\'f\'s\'d","rank":0},"menuType":2,"status":1},', '', 1, '', '2023-07-22 15:40:45', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (528, 3, 4, '菜单管理', '/system/menus/2043', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2043}', '', 1, '', '2023-07-22 15:40:55', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (529, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"3r3r32","permission":"2r323r23","parentId":2036,"path":"r23r23r","isButton":false,"routerName":"","meta":{"showParent":true,"title":"3r3r32","rank":33},"menuType":2,"status":1},', '', 0, '只允许在目录类型底下创建子菜单', '2023-07-22 15:42:04', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (530, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"3r3r32","permission":"2r323r23","parentId":2036,"path":"r23r23r","isButton":false,"routerName":"","meta":{"showParent":true,"title":"3r3r32","rank":33},"menuType":1,"status":1},', '', 0, '只允许在目录类型底下创建子菜单', '2023-07-22 15:42:08', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (531, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"3r3r32","permission":"2r323r23","parentId":2036,"path":"/3r3r32IframeLink","isButton":false,"routerName":"3r3r32IframeRouter","meta":{"frameSrc":"http://32323","showParent":true,"title":"3r3r32","rank":33},"menuType":3,"status":1},', '', 0, '只允许在目录类型底下创建子菜单', '2023-07-22 15:42:12', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (532, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"3r3r32","permission":"2r323r23","parentId":2036,"path":"/3r3r32outsideLink","isButton":false,"routerName":"http://3r3r32IframeRouter","meta":{"frameSrc":"http://32323","showParent":true,"title":"3r3r32","rank":33},"menuType":4,"status":1},', '', 0, '只允许在目录类型底下创建子菜单', '2023-07-22 15:42:15', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (533, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"3r3r32","permission":"2r323r23","parentId":2036,"path":"/3r3r32outsideLink","isButton":false,"routerName":"http://3r3r32IframeRouter","meta":{"frameSrc":"http://32323","showParent":true,"title":"3r3r32","rank":33},"menuType":4,"status":1},', '', 0, '只允许在目录类型底下创建子菜单', '2023-07-22 15:42:19', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (534, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"3r3r32","permission":"2r323r23","parentId":2036,"path":"/3r3r32outsideLink","isButton":false,"routerName":"http://3r3r32IframeRouter","meta":{"frameSrc":"http://32323","showParent":true,"title":"3r3r32","rank":33},"menuType":4,"status":1},', '', 0, '只允许在目录类型底下创建子菜单', '2023-07-22 15:42:22', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (535, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"","permission":"fsfsdfsdfsd","parentId":2035,"path":"/system/role/index","isButton":false,"routerName":"rolerouter1","meta":{"showParent":true,"title":"","rank":44},"menuType":1,"status":1},', '', 1, '', '2023-07-22 15:43:04', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (536, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"","permission":"sdfsdfsdf","parentId":2035,"path":"/erjimulu","isButton":false,"routerName":"","meta":{"showParent":true,"title":"","rank":33},"menuType":2,"status":1},', '', 1, '', '2023-07-22 15:43:49', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (537, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"","permission":"xzcxc","parentId":2045,"path":"/system/post/index","isButton":false,"routerName":"porstrouter","meta":{"showParent":true,"title":"","rank":33},"menuType":1,"status":1},', '', 1, '', '2023-07-22 15:45:01', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (538, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"Iframe2测试","permission":"sdfdfsd","parentId":2035,"path":"/neiqianIframe2ceshiIframeLink","isButton":false,"routerName":"neiqianIframe2ceshiIframeRouter","meta":{"frameSrc":"http://element-plus.org/zh-CN/","showParent":true,"title":"Iframe2测试","rank":333},"menuType":3,"status":1},', '', 1, '', '2023-07-22 15:48:44', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (539, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"","permission":"sdfdsfsdf","parentId":0,"path":"/wailiantiaozhuanceshioutsideLink","isButton":false,"routerName":"http://element-plus.org/zh-CN/","meta":{"showParent":true,"title":"","rank":333},"menuType":4,"status":1},', '', 1, '', '2023-07-22 15:49:08', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (540, 3, 4, '菜单管理', '/system/menus/2048', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2048}', '', 1, '', '2023-07-22 15:49:25', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (541, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"","permission":"","parentId":2035,"path":"/wailiantiaozhuanceshioutsideLink","isButton":false,"routerName":"http://element-plus.org/zh-CN/","meta":{"showParent":true,"title":"","rank":333},"menuType":4,"status":1},', '', 1, '', '2023-07-22 15:49:43', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (542, 2, 3, '菜单管理', '/system/menus/2032', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2032}', '', 1, '', '2023-07-22 16:24:38', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (543, 2, 3, '菜单管理', '/system/menus/2031', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2031}', '', 1, '', '2023-07-22 16:25:14', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (544, 2, 3, '菜单管理', '/system/menus/2031', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2031}', '', 1, '', '2023-07-22 16:27:50', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (545, 2, 3, '菜单管理', '/system/menus/2031', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2031}', '', 1, '', '2023-07-22 16:28:20', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (546, 2, 3, '菜单管理', '/system/menus/2031', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2031}', '', 1, '', '2023-07-22 16:28:46', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (547, 2, 3, '菜单管理', '/system/menus/2036', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2036}', '', 1, '', '2023-07-22 16:30:30', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (548, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"3","permission":"fsdfsd","parentId":2045,"path":"/external","isButton":false,"routerName":"https://element-plus.org/zh-CN/","meta":{"showParent":true,"title":"3","rank":33},"menuType":4,"status":1},', '', 1, '', '2023-07-22 16:54:46', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (549, 2, 3, '菜单管理', '/system/menus/59', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=59}', '', 0, '不允许更改菜单的类型', '2023-07-22 17:01:00', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (550, 2, 3, '菜单管理', '/system/menus/59', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=59}', '', 1, '', '2023-07-22 17:02:05', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (551, 2, 3, '菜单管理', '/system/menus/59', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=59}', '', 1, '', '2023-07-22 17:02:28', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (552, 2, 3, '菜单管理', '/system/menus/2044', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2044}', '', 0, '不允许更改菜单的类型', '2023-07-22 17:02:41', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (553, 2, 3, '菜单管理', '/system/menus/2044', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2044}', '', 0, '不允许更改菜单的类型', '2023-07-22 17:03:32', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (554, 2, 3, '菜单管理', '/system/menus/2044', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2044}', '', 1, '', '2023-07-22 17:04:16', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (555, 2, 3, '菜单管理', '/system/menus/2040', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2040}', '', 1, '', '2023-07-22 17:04:34', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (556, 2, 3, '菜单管理', '/system/menus/2047', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2047}', '', 1, '', '2023-07-22 17:04:45', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (557, 2, 3, '菜单管理', '/system/menus/2045', 'com.agileboot.admin.controller.system.SysMenuController.edit()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2045}', '', 1, '', '2023-07-22 17:05:06', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (558, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"","permission":"","parentId":2035,"path":"","routerName":"","meta":{"showParent":true,"rank":0},"status":1},', '', 0, '', '2023-07-22 17:05:25', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (559, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"","permission":"","parentId":2035,"path":"","isButton":false,"routerName":"","meta":{"showParent":true,"rank":0},"menuType":1,"status":1},', '', 1, '', '2023-07-22 17:06:31', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (560, 3, 4, '菜单管理', '/system/menus/2051', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2051}', '', 1, '', '2023-07-22 17:06:38', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (561, 1, 2, '菜单管理', '/system/menus', 'com.agileboot.admin.controller.system.SysMenuController.add()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{"menuName":"","permission":"","parentId":2035,"path":"","isButton":false,"routerName":"","meta":{"showParent":true,"rank":0},"status":1},', '', 1, '', '2023-07-22 17:06:57', 0);
INSERT INTO sys_operation_log (operation_id, business_type, request_method, request_module, request_url, called_method, operator_type, user_id, username, operator_ip, operator_location, dept_id, dept_name, operation_param, operation_result, status, error_stack, operation_time, deleted) VALUES (562, 3, 4, '菜单管理', '/system/menus/2052', 'com.agileboot.admin.controller.system.SysMenuController.remove()', 1, 0, 'admin', '127.0.0.1', '内网IP', 0, null, '{menuId=2052}', '', 1, '', '2023-07-22 17:07:04', 0);
create table sys_post
(
post_id bigint auto_increment comment '岗位ID'
primary key,
post_code varchar(64) not null comment '岗位编码',
post_name varchar(64) not null comment '岗位名称',
post_sort int not null comment '显示顺序',
status smallint not null comment '状态1正常 0停用',
remark varchar(512) null comment '备注',
creator_id bigint null,
create_time datetime null comment '创建时间',
updater_id bigint null,
update_time datetime null comment '更新时间',
deleted tinyint(1) default 0 not null comment '逻辑删除'
)
comment '岗位信息表';
INSERT INTO sys_post (post_id, post_code, post_name, post_sort, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (1, 'ceo', '董事长', 1, 1, '', null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_post (post_id, post_code, post_name, post_sort, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (2, 'se', '项目经理', 2, 1, '', null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_post (post_id, post_code, post_name, post_sort, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (3, 'hr', '人力资源', 3, 1, '', null, '2022-05-21 08:30:54', null, null, 0);
INSERT INTO sys_post (post_id, post_code, post_name, post_sort, status, remark, creator_id, create_time, updater_id, update_time, deleted) VALUES (4, 'user', '普通员工', 5, 0, '', null, '2022-05-21 08:30:54', null, null, 0);
create table sys_role
(
role_id bigint auto_increment comment '角色ID'
primary key,
role_name varchar(32) not null comment '角色名称',
role_key varchar(128) not null comment '角色权限字符串',
role_sort int not null comment '显示顺序',
data_scope smallint default 1 null comment '数据范围1全部数据权限 2自定数据权限 3: 本部门数据权限 4: 本部门及以下数据权限 5: 本人权限)',
dept_id_set varchar(1024) default '' null comment '角色所拥有的部门数据权限',
status smallint not null comment '角色状态1正常 0停用',
creator_id bigint null comment '创建者ID',
create_time datetime null comment '创建时间',
updater_id bigint null comment '更新者ID',
update_time datetime null comment '更新时间',
remark varchar(512) null comment '备注',
deleted tinyint(1) default 0 not null comment '删除标志0代表存在 1代表删除'
)
comment '角色信息表';
INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, dept_id_set, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (1, '超级管理员', 'admin', 1, 1, '', 1, null, '2022-05-21 08:30:54', null, null, '超级管理员', 0);
INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, dept_id_set, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (2, '普通角色', 'common', 3, 2, '', 1, null, '2022-05-21 08:30:54', null, null, '普通角色', 0);
INSERT INTO sys_role (role_id, role_name, role_key, role_sort, data_scope, dept_id_set, status, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (3, '闲置角色', 'unused', 4, 2, '', 0, null, '2022-05-21 08:30:54', null, null, '未使用的角色', 0);
create table sys_role_menu
(
role_id bigint not null comment '角色ID',
menu_id bigint not null comment '菜单ID',
primary key (role_id, menu_id)
)
comment '角色和菜单关联表';
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 1);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 2);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 3);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 4);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 5);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 6);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 7);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 8);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 9);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 10);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 11);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 12);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 13);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 14);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 15);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 16);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 17);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 18);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 19);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 20);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 21);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 22);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 23);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 24);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 25);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 26);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 27);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 28);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 29);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 30);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 31);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 32);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 33);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 34);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 35);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 36);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 37);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 38);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 39);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 40);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 41);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 42);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 43);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 44);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 45);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 46);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 47);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 48);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 49);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 50);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 51);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 52);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 53);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 54);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 55);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 56);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 57);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 58);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 59);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 60);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (2, 61);
INSERT INTO sys_role_menu (role_id, menu_id) VALUES (3, 1);
create table sys_user
(
user_id bigint auto_increment comment '用户ID'
primary key,
post_id bigint null comment '职位id',
role_id bigint null comment '角色id',
dept_id bigint null comment '部门ID',
username varchar(64) not null comment '用户账号',
nick_name varchar(32) not null comment '用户昵称',
user_type smallint default 0 null comment '用户类型00系统用户',
email varchar(128) default '' null comment '用户邮箱',
phone_number varchar(18) default '' null comment '手机号码',
sex smallint default 0 null comment '用户性别0男 1女 2未知',
avatar varchar(512) default '' null comment '头像地址',
password varchar(128) default '' not null comment '密码',
status smallint default 0 not null comment '帐号状态1正常 2停用 3冻结',
login_ip varchar(128) default '' null comment '最后登录IP',
login_date datetime null comment '最后登录时间',
is_admin tinyint(1) default 0 not null comment '超级管理员标志1是0否',
creator_id bigint null comment '更新者ID',
create_time datetime null comment '创建时间',
updater_id bigint null comment '更新者ID',
update_time datetime null comment '更新时间',
remark varchar(512) null comment '备注',
deleted tinyint(1) default 0 not null comment '删除标志0代表存在 1代表删除'
)
comment '用户信息表';
INSERT INTO sys_user (user_id, post_id, role_id, dept_id, username, nick_name, user_type, email, phone_number, sex, avatar, password, status, login_ip, login_date, is_admin, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (1, 1, 1, 4, 'admin', 'valarchie1', 0, 'agileboot@163.com', '15888888889', 0, '', '$2a$10$rb1wRoEIkLbIknREEN1LH.FGs4g0oOS5t6l5LQ793nRaFO.SPHDHy', 1, '127.0.0.1', '2023-07-22 15:38:53', 1, null, '2022-05-21 08:30:54', 1, '2023-07-22 15:38:53', '管理员', 0);
INSERT INTO sys_user (user_id, post_id, role_id, dept_id, username, nick_name, user_type, email, phone_number, sex, avatar, password, status, login_ip, login_date, is_admin, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (2, 2, 2, 5, 'ag1', 'valarchie2', 0, 'agileboot1@qq.com', '15666666666', 1, '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', 1, '127.0.0.1', '2022-05-21 08:30:54', 0, null, '2022-05-21 08:30:54', null, null, '测试员1', 0);
INSERT INTO sys_user (user_id, post_id, role_id, dept_id, username, nick_name, user_type, email, phone_number, sex, avatar, password, status, login_ip, login_date, is_admin, creator_id, create_time, updater_id, update_time, remark, deleted) VALUES (3, 2, 0, 5, 'ag2', 'valarchie3', 0, 'agileboot2@qq.com', '15666666667', 1, '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', 1, '127.0.0.1', '2022-05-21 08:30:54', 0, null, '2022-05-21 08:30:54', null, null, '测试员2', 0);