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 InfraServerApplication {

View File

@@ -11,7 +11,7 @@ import jakarta.annotation.Resource;
/**
* WebSocket 配置
*
* @author 芋道源码
* @author ZT
*/
@Configuration
@EnableWebSocket

View File

@@ -13,7 +13,7 @@ import java.util.List;
/**
* 在线文档 Convert
*
* @author 芋道源码
* @author ZT
*/
@Mapper
public interface DocFileConvert {

View File

@@ -9,7 +9,7 @@ import org.mapstruct.factory.Mappers;
/**
* 文件配置 Convert
*
* @author 芋道源码
* @author ZT
*/
@Mapper
public interface FileConfigConvert {

View File

@@ -16,7 +16,7 @@ import lombok.experimental.Accessors;
/**
* 代码生成 column 字段定义
*
* @author 芋道源码
* @author ZT
*/
@TableName(value = "infra_codegen_column", autoResultMap = true)
@KeySequence("infra_codegen_column_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -18,7 +18,7 @@ import lombok.experimental.Accessors;
/**
* 代码生成 table 表定义
*
* @author 芋道源码
* @author ZT
*/
@TableName(value = "infra_codegen_table", autoResultMap = true)
@KeySequence("infra_codegen_table_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -14,7 +14,7 @@ import lombok.ToString;
/**
* 参数配置表
*
* @author 芋道源码
* @author ZT
*/
@TableName("infra_config")
@KeySequence("infra_config_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -9,7 +9,7 @@ import lombok.Data;
/**
* 数据源配置
*
* @author 芋道源码
* @author ZT
*/
@TableName(value = "infra_data_source_config", autoResultMap = true)
@KeySequence("infra_data_source_config_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -12,7 +12,7 @@ import java.time.LocalDateTime;
/**
* 示例联系人 DO
*
* @author 芋道源码
* @author ZT
*/
@TableName("yudao_demo01_contact")
@KeySequence("yudao_demo01_contact_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -10,7 +10,7 @@ import lombok.*;
/**
* 示例分类 DO
*
* @author 芋道源码
* @author ZT
*/
@TableName("yudao_demo02_category")
@KeySequence("yudao_demo02_category_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

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