1. 替换原始 code 签名

2. 服务与模块生成器,支持指定起始端口批量端口分配
This commit is contained in:
chenbowen
2025-09-02 10:15:16 +08:00
parent 287f4bbd7e
commit e99da38fd4
778 changed files with 876 additions and 801 deletions

View File

@@ -10,7 +10,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
* 如果你碰到启动的问题,请认真阅读 http://172.16.46.63:30888/quick-start/ 文章
* 如果你碰到启动的问题,请认真阅读 http://172.16.46.63:30888/quick-start/ 文章
*
* @author 芋道源码
* @author ZT
*/
@SpringBootApplication
public class SystemServerApplication {

View File

@@ -27,7 +27,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* 社交应用的 API 实现类
*
* @author 芋道源码
* @author ZT
*/
@RestController
@Validated

View File

@@ -52,7 +52,7 @@ import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUti
* 考虑到【本系统】暂时不想做的过于复杂,默认只有获取到 access token 之后,可以访问【本系统】管理后台的 /system-api/* 所有接口,除非手动添加 scope 控制。
* scope 的使用示例,可见 {@link OAuth2UserController} 类
*
* @author 芋道源码
* @author ZT
*/
@Tag(name = "管理后台 - OAuth2.0 授权")
@RestController

View File

@@ -37,7 +37,7 @@ import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUti
* 1. 在 getUserInfo 方法上,添加 @PreAuthorize("@ss.hasScope('user.read')") 注解,声明需要满足 scope = user.read
* 2. 在 updateUserInfo 方法上,添加 @PreAuthorize("@ss.hasScope('user.write')") 注解,声明需要满足 scope = user.write
*
* @author 芋道源码
* @author ZT
*/
@Tag(name = "管理后台 - OAuth2.0 用户")
@RestController

View File

@@ -23,7 +23,7 @@ import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
/**
* 权限 Controller提供赋予用户、角色的权限的 API 接口
*
* @author 芋道源码
* @author ZT
*/
@Tag(name = "管理后台 - 权限")
@RestController

View File

@@ -21,7 +21,7 @@ import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
/**
* 同步接口日志 Controller
*
* @author 芋道源码
* @author ZT
*/
@Tag(name = "管理后台 - 同步接口日志")
@RestController

View File

@@ -14,7 +14,7 @@ import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_
/**
* 同步接口日志分页 Request VO
*
* @author 芋道源码
* @author ZT
*/
@Schema(description = "管理后台 - 同步接口日志分页 Request VO")
@Data

View File

@@ -8,7 +8,7 @@ import java.time.LocalDateTime;
/**
* 同步接口日志 Response VO
*
* @author 芋道源码
* @author ZT
*/
@Schema(description = "管理后台 - 同步接口日志 Response VO")
@Data

View File

@@ -8,7 +8,7 @@ import org.mapstruct.factory.Mappers;
/**
* 租户 Convert
*
* @author 芋道源码
* @author ZT
*/
@Mapper
public interface TenantConvert {

View File

@@ -17,7 +17,7 @@ import lombok.ToString;
*
* 注意,包括登录和登出两种行为
*
* @author 芋道源码
* @author ZT
*/
@TableName("system_login_log")
@KeySequence("system_login_log_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

Some files were not shown because too many files have changed in this diff Show More