gateway tomcat去除

This commit is contained in:
2025-12-22 17:03:37 +08:00
parent e09817015e
commit b023bec261
55 changed files with 1926 additions and 260 deletions

View File

@@ -35,6 +35,14 @@
<artifactId>common-utils</artifactId>
<version>${urban-lifeline.version}</version>
</dependency>
<!-- Swagger/OpenAPI 注解 (用于 @Schema 等) -->
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations-jakarta</artifactId>
<version>2.2.36</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@@ -23,4 +23,10 @@ public class TbSysUserRoleDTO extends BaseDTO {
@Schema(description = "角色ID")
private String roleId;
@Schema(description = "部门ID")
private String deptId;
@Schema(description = "部门全路径")
private String deptPath;
}