From e87d9f3de8d80ccdca1aaad4c5ff75abf9801428 Mon Sep 17 00:00:00 2001 From: fengjin <1435304038@qq.com> Date: 星期三, 16 十一月 2022 17:19:41 +0800 Subject: [PATCH] 1.添加智能质询访问表实体类 2.添加智能质询访问相关功能并统计数据 3.修改门户网搜索结果 --- flower_city/src/main/java/com/dg/core/controller/RoleManagementController.java | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/flower_city/src/main/java/com/dg/core/controller/RoleManagementController.java b/flower_city/src/main/java/com/dg/core/controller/RoleManagementController.java index 8c134dd..bcc1744 100644 --- a/flower_city/src/main/java/com/dg/core/controller/RoleManagementController.java +++ b/flower_city/src/main/java/com/dg/core/controller/RoleManagementController.java @@ -42,7 +42,6 @@ { return getDataTable("分页不能为空"); } - if(pageSize==null) { return getDataTable("分页条数不能为空"); @@ -77,9 +76,9 @@ @ApiOperation("编辑角色") @PostMapping("/update") @Authorization - public ResultData updateConfig(@RequestBody RoleManagementEntity entity) + public ResultData updateConfig(@RequestBody RoleManagementEntity entity,@CurrentUser SysUser sysUser) { -// entity.setUpdateUserId(sysUser.getUserId()+""); + entity.setUpdateUserId(sysUser.getUserId()+""); return toAjax(iRoleManagementService.updateConfig(entity)); } -- Gitblit v1.7.1