Compare commits

..

1 Commits

Author SHA1 Message Date
gyb111222 6b637d8893 feat:增加通过ID获取用户名单接口 2026-03-20 15:53:37 +08:00
4 changed files with 1 additions and 29 deletions

12
pom.xml
View File

@ -71,18 +71,6 @@
<artifactId>ruoyi-common-swagger</artifactId> <artifactId>ruoyi-common-swagger</artifactId>
</dependency> </dependency>
<!-- Flyway Database Migration -->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
<!-- Flyway MySQL Support -->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
</dependency>
</dependencies> </dependencies>
<build> <build>

View File

@ -137,7 +137,6 @@ public class SysUserController extends BaseController
return R.ok(sysUserVo); return R.ok(sysUserVo);
} }
/** /**
* 根据用户ID获取用户名称 * 根据用户ID获取用户名称
*/ */
@ -153,7 +152,6 @@ public class SysUserController extends BaseController
return R.ok(sysUser.getUserName()); return R.ok(sysUser.getUserName());
} }
/** /**
* 注册用户信息 * 注册用户信息
*/ */

View File

@ -10,10 +10,6 @@ spring:
profiles: profiles:
# 环境配置 # 环境配置
active: prod active: prod
flyway:
table: flyway_system_schema_history # 自定义历史表名
baseline-on-migrate: true
baseline-version: 0
cloud: cloud:
nacos: nacos:
discovery: discovery:

View File

@ -1,10 +0,0 @@
-- Initial setup for ruoyi-system module
-- This is a placeholder migration file
-- Add your initial database schema here
-- Example:
-- CREATE TABLE IF NOT EXISTS example_table (
-- id BIGINT PRIMARY KEY AUTO_INCREMENT,
-- name VARCHAR(100) NOT NULL,
-- created_time DATETIME DEFAULT CURRENT_TIMESTAMP
-- );