1. 替换原始 code 签名

2. 服务与模块生成器,支持指定起始端口批量端口分配

(cherry picked from commit e99da38fd4)
This commit is contained in:
chenbowen
2025-09-02 10:15:16 +08:00
committed by chenbowen
parent 9929ae8a39
commit 1e1216c150
778 changed files with 876 additions and 801 deletions

View File

@@ -7,7 +7,7 @@ import org.springframework.cloud.openfeign.EnableFeignClients;
/**
* 字典用到 Feign 的配置项
*
* @author 芋道源码
* @author ZT
*/
@AutoConfiguration
@EnableFeignClients(clients = DictDataCommonApi.class) // 主要是引入相关的 API 服务

View File

@@ -18,7 +18,7 @@ import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.
/**
* 字典工具类
*
* @author 芋道源码
* @author ZT
*/
@Slf4j
public class DictFrameworkUtils {

View File

@@ -14,7 +14,7 @@ import lombok.extern.slf4j.Slf4j;
/**
* Excel 数据字典转换器
*
* @author 芋道源码
* @author ZT
*/
@Slf4j
public class DictConvert implements Converter<Object> {

View File

@@ -10,7 +10,7 @@ import com.alibaba.excel.metadata.property.ExcelContentProperty;
/**
* Excel Json 转换器
*
* @author 芋道源码
* @author ZT
*/
public class JsonConvert implements Converter<Object> {

View File

@@ -14,7 +14,7 @@ import java.math.RoundingMode;
*
* 金额单位:分
*
* @author 芋道源码
* @author ZT
*/
public class MoneyConvert implements Converter<Integer> {

View File

@@ -14,7 +14,7 @@ import java.util.List;
/**
* Excel 工具类
*
* @author 芋道源码
* @author ZT
*/
public class ExcelUtils {