diff --git a/lidee-admin/src/main/resources/application-local.yaml b/lidee-admin/src/main/resources/application-local.yaml index 703a0b7..60d36ac 100644 --- a/lidee-admin/src/main/resources/application-local.yaml +++ b/lidee-admin/src/main/resources/application-local.yaml @@ -9,28 +9,28 @@ spring: datasource: master: # MYSQL数据库 主库,业务库 - url: jdbc:mysql://127.0.0.1:3306/demo?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true # MySQL Connector/J 8.X 连接的示例 + url: jdbc:mysql://127.0.0.1:3306/bpmformdome?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true # MySQL Connector/J 8.X 连接的示例 username: root - password: root + password: 123456 lideeyunji: # 从库,框架库 - url: jdbc:mysql://127.0.0.1:3306/demo?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 + url: jdbc:mysql://127.0.0.1:3306/bpmformdome?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 username: root - password: root + password: 123456 slave: # 日志库单独 lazy: true # 开启懒加载,保证启动速度 - url: jdbc:mysql://127.0.0.1:3306/demo?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 + url: jdbc:mysql://127.0.0.1:3306/bpmformdome?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 username: root - password: root + password: 123456 bidb: # 日志库单独 lazy: true # 开启懒加载,保证启动速度 url: jdbc:mysql://127.0.0.1:3306/erp_bi_data?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 username: root - password: root + password: 123456 redis: host: 127.0.0.1 # 地址 port: 6379 # 端口 database: 2 # 数据库索引 - password: lidee@123 # 密码,建议生产环境开启 + #password: lidee@123 # 密码,建议生产环境开启 --- #################### 地代码平台相关配置 #################### diff --git a/lidee-admin/target/classes/application-local.yaml b/lidee-admin/target/classes/application-local.yaml index 703a0b7..60d36ac 100644 --- a/lidee-admin/target/classes/application-local.yaml +++ b/lidee-admin/target/classes/application-local.yaml @@ -9,28 +9,28 @@ spring: datasource: master: # MYSQL数据库 主库,业务库 - url: jdbc:mysql://127.0.0.1:3306/demo?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true # MySQL Connector/J 8.X 连接的示例 + url: jdbc:mysql://127.0.0.1:3306/bpmformdome?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true&rewriteBatchedStatements=true # MySQL Connector/J 8.X 连接的示例 username: root - password: root + password: 123456 lideeyunji: # 从库,框架库 - url: jdbc:mysql://127.0.0.1:3306/demo?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 + url: jdbc:mysql://127.0.0.1:3306/bpmformdome?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 username: root - password: root + password: 123456 slave: # 日志库单独 lazy: true # 开启懒加载,保证启动速度 - url: jdbc:mysql://127.0.0.1:3306/demo?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 + url: jdbc:mysql://127.0.0.1:3306/bpmformdome?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 username: root - password: root + password: 123456 bidb: # 日志库单独 lazy: true # 开启懒加载,保证启动速度 url: jdbc:mysql://127.0.0.1:3306/erp_bi_data?useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true # MySQL Connector/J 8.X 连接的示例 username: root - password: root + password: 123456 redis: host: 127.0.0.1 # 地址 port: 6379 # 端口 database: 2 # 数据库索引 - password: lidee@123 # 密码,建议生产环境开启 + #password: lidee@123 # 密码,建议生产环境开启 --- #################### 地代码平台相关配置 #################### diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/entity/ReportFieldEntity.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/entity/ReportFieldEntity.java index 69705a2..21cd4c5 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/entity/ReportFieldEntity.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/entity/ReportFieldEntity.java @@ -69,10 +69,18 @@ public class ReportFieldEntity extends BaseTenantEntity { */ private String isShowSort; + + /** * 国际化配置 */ private String labelI18n; + + /** + * 是否合计 空不合计 非空SQL是要返回的合计字段 + */ + private String isAmount; + } diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/params/vo/ReportFieldVo.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/params/vo/ReportFieldVo.java index 2eb2c6d..8900e79 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/params/vo/ReportFieldVo.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/params/vo/ReportFieldVo.java @@ -39,9 +39,16 @@ public class ReportFieldVo extends ReportFieldIdVo { @Schema(description = "字段是否有修改;如果是N并且有id的情况下,不修改") private String isModify; + /** * 国际化配置 */ private String labelI18n; + + @Schema(description = "是否合计") + private String isAmount ; + + @Schema(description = "是否支持维度;N=不支持 Y=支持") + private String isDimension ; } diff --git a/lidee-core/src/main/java/com/lideeyunji/core/framework/service/impl/ReportServiceImpl.java b/lidee-core/src/main/java/com/lideeyunji/core/framework/service/impl/ReportServiceImpl.java index 0490f31..df7cf45 100644 --- a/lidee-core/src/main/java/com/lideeyunji/core/framework/service/impl/ReportServiceImpl.java +++ b/lidee-core/src/main/java/com/lideeyunji/core/framework/service/impl/ReportServiceImpl.java @@ -371,13 +371,14 @@ public class ReportServiceImpl extends ServiceImpl i entity.setFieldName(vo.getFieldName()); entity.setFieldType(vo.getFieldType()); entity.setSortNum(++sortNum); - entity.setQueryIsDb(vo.getQueryIsDb()); entity.setQueryIsWeb(vo.getQueryIsWeb()); entity.setQueryMode(vo.getQueryMode()); entity.setDictCode(vo.getDictCode()); entity.setIsExport(vo.getIsExport()); entity.setIsShowSort(vo.getIsShowSort()); + entity.setIsShowSort(vo.getIsDimension()); + entity.setIsAmount(vo.getIsAmount()); entity.setLabelI18n(vo.getLabelI18n()); if (FuncBase.isEmpty(vo.getId())) {//新增 addList.add(entity); diff --git a/lidee-core/target/classes/com/lideeyunji/core/framework/entity/ReportFieldEntity.class b/lidee-core/target/classes/com/lideeyunji/core/framework/entity/ReportFieldEntity.class index f07a222..0582528 100644 Binary files a/lidee-core/target/classes/com/lideeyunji/core/framework/entity/ReportFieldEntity.class and b/lidee-core/target/classes/com/lideeyunji/core/framework/entity/ReportFieldEntity.class differ diff --git a/lidee-core/target/classes/com/lideeyunji/core/framework/params/vo/ReportFieldVo.class b/lidee-core/target/classes/com/lideeyunji/core/framework/params/vo/ReportFieldVo.class index 5b95d8c..5045b22 100644 Binary files a/lidee-core/target/classes/com/lideeyunji/core/framework/params/vo/ReportFieldVo.class and b/lidee-core/target/classes/com/lideeyunji/core/framework/params/vo/ReportFieldVo.class differ diff --git a/lidee-core/target/classes/com/lideeyunji/core/framework/service/impl/ReportServiceImpl.class b/lidee-core/target/classes/com/lideeyunji/core/framework/service/impl/ReportServiceImpl.class index 7de7ef1..ba74407 100644 Binary files a/lidee-core/target/classes/com/lideeyunji/core/framework/service/impl/ReportServiceImpl.class and b/lidee-core/target/classes/com/lideeyunji/core/framework/service/impl/ReportServiceImpl.class differ diff --git a/lidee-service/lidee-service-infra-biz/target/classes/META-INF/spring-configuration-metadata.json b/lidee-service/lidee-service-infra-biz/target/classes/META-INF/spring-configuration-metadata.json index 36cb20f..2e661c6 100644 --- a/lidee-service/lidee-service-infra-biz/target/classes/META-INF/spring-configuration-metadata.json +++ b/lidee-service/lidee-service-infra-biz/target/classes/META-INF/spring-configuration-metadata.json @@ -11,8 +11,7 @@ "name": "lideeyunji.codegen.base-package", "type": "java.lang.String", "description": "生成的 Java 代码的基础包", - "sourceType": "com.lideeyunji.service.infra.config.framework.codegen.config.CodegenProperties", - "defaultValue": "com.lideeyunji" + "sourceType": "com.lideeyunji.service.infra.config.framework.codegen.config.CodegenProperties" }, { "name": "lideeyunji.codegen.db-schemas", @@ -24,8 +23,7 @@ "name": "lideeyunji.codegen.front-type", "type": "java.lang.Integer", "description": "代码生成的前端类型(默认) 枚举 {@link CodegenFrontTypeEnum#getType()}", - "sourceType": "com.lideeyunji.service.infra.config.framework.codegen.config.CodegenProperties", - "defaultValue": 10 + "sourceType": "com.lideeyunji.service.infra.config.framework.codegen.config.CodegenProperties" } ], "hints": [] diff --git a/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/codegen/CodegenConvertImpl.java b/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/codegen/CodegenConvertImpl.java index 65cdb60..aaa6697 100644 --- a/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/codegen/CodegenConvertImpl.java +++ b/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/codegen/CodegenConvertImpl.java @@ -12,8 +12,8 @@ import org.apache.ibatis.type.JdbcType; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:42+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:12+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class CodegenConvertImpl implements CodegenConvert { diff --git a/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/config/ConfigConvertImpl.java b/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/config/ConfigConvertImpl.java index f969eab..c19db92 100644 --- a/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/config/ConfigConvertImpl.java +++ b/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/config/ConfigConvertImpl.java @@ -10,8 +10,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:42+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:12+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class ConfigConvertImpl implements ConfigConvert { diff --git a/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/file/FileConfigConvertImpl.java b/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/file/FileConfigConvertImpl.java index 2b10746..cb13041 100644 --- a/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/file/FileConfigConvertImpl.java +++ b/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/file/FileConfigConvertImpl.java @@ -6,8 +6,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:42+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:12+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class FileConfigConvertImpl implements FileConfigConvert { diff --git a/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/redis/RedisConvertImpl.java b/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/redis/RedisConvertImpl.java index 5bd178e..b016177 100644 --- a/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/redis/RedisConvertImpl.java +++ b/lidee-service/lidee-service-infra-biz/target/generated-sources/annotations/com/lideeyunji/service/infra/config/convert/redis/RedisConvertImpl.java @@ -4,8 +4,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:42+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:12+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class RedisConvertImpl implements RedisConvert { } diff --git a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/auth/AuthConvertImpl.java b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/auth/AuthConvertImpl.java index 06bd337..348f8eb 100644 --- a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/auth/AuthConvertImpl.java +++ b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/auth/AuthConvertImpl.java @@ -14,8 +14,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:30+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:16+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class AuthConvertImpl implements AuthConvert { diff --git a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/logger/OperateLogConvertImpl.java b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/logger/OperateLogConvertImpl.java index 3e8393a..cac5cc1 100644 --- a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/logger/OperateLogConvertImpl.java +++ b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/logger/OperateLogConvertImpl.java @@ -6,8 +6,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:30+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:16+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class OperateLogConvertImpl implements OperateLogConvert { diff --git a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/mail/MailAccountConvertImpl.java b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/mail/MailAccountConvertImpl.java index fce9ece..dfd0b2f 100644 --- a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/mail/MailAccountConvertImpl.java +++ b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/mail/MailAccountConvertImpl.java @@ -4,8 +4,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:30+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:16+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class MailAccountConvertImpl implements MailAccountConvert { } diff --git a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/oauth2/OAuth2OpenConvertImpl.java b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/oauth2/OAuth2OpenConvertImpl.java index 1d5ed18..1485f7b 100644 --- a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/oauth2/OAuth2OpenConvertImpl.java +++ b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/oauth2/OAuth2OpenConvertImpl.java @@ -4,8 +4,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:30+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:16+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class OAuth2OpenConvertImpl implements OAuth2OpenConvert { } diff --git a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/social/SocialUserConvertImpl.java b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/social/SocialUserConvertImpl.java index afa15da..da056d1 100644 --- a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/social/SocialUserConvertImpl.java +++ b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/social/SocialUserConvertImpl.java @@ -6,8 +6,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:30+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:16+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class SocialUserConvertImpl implements SocialUserConvert { diff --git a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/tenant/TenantConvertImpl.java b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/tenant/TenantConvertImpl.java index 272c104..ebfb0ab 100644 --- a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/tenant/TenantConvertImpl.java +++ b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/tenant/TenantConvertImpl.java @@ -4,8 +4,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:30+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:16+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class TenantConvertImpl implements TenantConvert { } diff --git a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/user/UserConvertImpl.java b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/user/UserConvertImpl.java index 6fa34f0..556fb0c 100644 --- a/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/user/UserConvertImpl.java +++ b/lidee-service/lidee-service-system-biz/target/generated-sources/annotations/com/lideeyunji/service/system/config/convert/user/UserConvertImpl.java @@ -4,8 +4,8 @@ import javax.annotation.Generated; @Generated( value = "org.mapstruct.ap.MappingProcessor", - date = "2026-01-21T09:09:30+0800", - comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_391 (Oracle Corporation)" + date = "2026-02-02T00:49:16+0800", + comments = "version: 1.5.5.Final, compiler: javac, environment: Java 1.8.0_392 (Amazon.com Inc.)" ) public class UserConvertImpl implements UserConvert { } diff --git a/lidee-tool/tool-spring-boot-starter-ai/target/classes/META-INF/spring-configuration-metadata.json b/lidee-tool/tool-spring-boot-starter-ai/target/classes/META-INF/spring-configuration-metadata.json index 6047a40..b9d4e00 100644 --- a/lidee-tool/tool-spring-boot-starter-ai/target/classes/META-INF/spring-configuration-metadata.json +++ b/lidee-tool/tool-spring-boot-starter-ai/target/classes/META-INF/spring-configuration-metadata.json @@ -15,50 +15,42 @@ { "name": "lideeyunji.ai.deepseek.api-host", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.ai.properties.DeepSeekConfigProperties", - "defaultValue": "https:\/\/api.deepseek.com\/" + "sourceType": "com.lideeyunji.tool.framework.ai.properties.DeepSeekConfigProperties" }, { "name": "lideeyunji.ai.deepseek.api-key", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.ai.properties.DeepSeekConfigProperties", - "defaultValue": "" + "sourceType": "com.lideeyunji.tool.framework.ai.properties.DeepSeekConfigProperties" }, { "name": "lideeyunji.ai.deepseek.chat-completion-url", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.ai.properties.DeepSeekConfigProperties", - "defaultValue": "chat\/completions" + "sourceType": "com.lideeyunji.tool.framework.ai.properties.DeepSeekConfigProperties" }, { "name": "lideeyunji.ai.deepseek.model", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.ai.properties.DeepSeekConfigProperties", - "defaultValue": "deepseek-chat" + "sourceType": "com.lideeyunji.tool.framework.ai.properties.DeepSeekConfigProperties" }, { "name": "lideeyunji.ai.kimi.api-host", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.ai.properties.KimiConfigProperties", - "defaultValue": "https:\/\/api.moonshot.cn\/" + "sourceType": "com.lideeyunji.tool.framework.ai.properties.KimiConfigProperties" }, { "name": "lideeyunji.ai.kimi.api-key", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.ai.properties.KimiConfigProperties", - "defaultValue": "" + "sourceType": "com.lideeyunji.tool.framework.ai.properties.KimiConfigProperties" }, { "name": "lideeyunji.ai.kimi.chat-completion-url", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.ai.properties.KimiConfigProperties", - "defaultValue": "v1\/chat\/completions" + "sourceType": "com.lideeyunji.tool.framework.ai.properties.KimiConfigProperties" }, { "name": "lideeyunji.ai.kimi.model", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.ai.properties.KimiConfigProperties", - "defaultValue": "moonshot-v1-8k" + "sourceType": "com.lideeyunji.tool.framework.ai.properties.KimiConfigProperties" } ], "hints": [] diff --git a/lidee-tool/tool-spring-boot-starter-operatelog/target/classes/META-INF/spring-configuration-metadata.json b/lidee-tool/tool-spring-boot-starter-operatelog/target/classes/META-INF/spring-configuration-metadata.json index 667a13d..1f94961 100644 --- a/lidee-tool/tool-spring-boot-starter-operatelog/target/classes/META-INF/spring-configuration-metadata.json +++ b/lidee-tool/tool-spring-boot-starter-operatelog/target/classes/META-INF/spring-configuration-metadata.json @@ -10,8 +10,7 @@ { "name": "lideeyunji.yunji.save-op-log", "type": "java.lang.Boolean", - "sourceType": "com.lideeyunji.tool.framework.operatelog.config.OperateLogProperties", - "defaultValue": true + "sourceType": "com.lideeyunji.tool.framework.operatelog.config.OperateLogProperties" } ], "hints": [] diff --git a/lidee-tool/tool-spring-boot-starter-redis/target/classes/META-INF/spring-configuration-metadata.json b/lidee-tool/tool-spring-boot-starter-redis/target/classes/META-INF/spring-configuration-metadata.json index 70671f6..4b8d7b7 100644 --- a/lidee-tool/tool-spring-boot-starter-redis/target/classes/META-INF/spring-configuration-metadata.json +++ b/lidee-tool/tool-spring-boot-starter-redis/target/classes/META-INF/spring-configuration-metadata.json @@ -11,8 +11,7 @@ "name": "lideeyunji.cache.redis-scan-batch-size", "type": "java.lang.Integer", "description": "redis scan 一次返回数量", - "sourceType": "com.lideeyunji.tool.framework.redis.config.CacheProperties", - "defaultValue": 30 + "sourceType": "com.lideeyunji.tool.framework.redis.config.CacheProperties" } ], "hints": [] diff --git a/lidee-tool/tool-spring-boot-starter-security/target/classes/META-INF/spring-configuration-metadata.json b/lidee-tool/tool-spring-boot-starter-security/target/classes/META-INF/spring-configuration-metadata.json index cb5ac29..4a53813 100644 --- a/lidee-tool/tool-spring-boot-starter-security/target/classes/META-INF/spring-configuration-metadata.json +++ b/lidee-tool/tool-spring-boot-starter-security/target/classes/META-INF/spring-configuration-metadata.json @@ -11,22 +11,19 @@ "name": "lideeyunji.security.mock-enable", "type": "java.lang.Boolean", "description": "mock 模式的开关", - "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties", - "defaultValue": false + "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties" }, { "name": "lideeyunji.security.mock-secret", "type": "java.lang.String", "description": "mock 模式的密钥 一定要配置密钥,保证安全性", - "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties", - "defaultValue": "test" + "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties" }, { "name": "lideeyunji.security.password-encoder-length", "type": "java.lang.Integer", "description": "PasswordEncoder 加密复杂度,越高开销越大", - "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties", - "defaultValue": 4 + "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties" }, { "name": "lideeyunji.security.permit-all-urls", @@ -38,15 +35,13 @@ "name": "lideeyunji.security.token-header", "type": "java.lang.String", "description": "HTTP 请求时,访问令牌的请求 Header", - "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties", - "defaultValue": "Authorization" + "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties" }, { "name": "lideeyunji.security.token-parameter", "type": "java.lang.String", "description": "HTTP 请求时,访问令牌的请求参数 初始目的:解决 WebSocket 无法通过 header 传参,只能通过 token 参数拼接", - "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties", - "defaultValue": "token" + "sourceType": "com.lideeyunji.tool.framework.security.config.SecurityProperties" } ], "hints": [] diff --git a/lidee-tool/tool-spring-boot-starter-tenant/target/classes/META-INF/spring-configuration-metadata.json b/lidee-tool/tool-spring-boot-starter-tenant/target/classes/META-INF/spring-configuration-metadata.json index c165b24..17eaa22 100644 --- a/lidee-tool/tool-spring-boot-starter-tenant/target/classes/META-INF/spring-configuration-metadata.json +++ b/lidee-tool/tool-spring-boot-starter-tenant/target/classes/META-INF/spring-configuration-metadata.json @@ -11,8 +11,7 @@ "name": "lideeyunji.tenant.enable", "type": "java.lang.Boolean", "description": "是否开启", - "sourceType": "com.lideeyunji.tool.framework.tenant.config.TenantProperties", - "defaultValue": true + "sourceType": "com.lideeyunji.tool.framework.tenant.config.TenantProperties" }, { "name": "lideeyunji.tenant.ignore-tables", diff --git a/lidee-tool/tool-spring-boot-starter-web/target/classes/META-INF/spring-configuration-metadata.json b/lidee-tool/tool-spring-boot-starter-web/target/classes/META-INF/spring-configuration-metadata.json index 89e71dc..69e8a88 100644 --- a/lidee-tool/tool-spring-boot-starter-web/target/classes/META-INF/spring-configuration-metadata.json +++ b/lidee-tool/tool-spring-boot-starter-web/target/classes/META-INF/spring-configuration-metadata.json @@ -52,8 +52,7 @@ "name": "lideeyunji.error-code.enable", "type": "java.lang.Boolean", "description": "是否开启", - "sourceType": "com.lideeyunji.tool.framework.errorcode.config.ErrorCodeProperties", - "defaultValue": false + "sourceType": "com.lideeyunji.tool.framework.errorcode.config.ErrorCodeProperties" }, { "name": "lideeyunji.swagger.author", @@ -136,15 +135,13 @@ { "name": "lideeyunji.web.web-u-r-i", "type": "java.lang.String", - "sourceType": "com.lideeyunji.tool.framework.web.config.WebProperties", - "defaultValue": "http:\/\/lidee.vip" + "sourceType": "com.lideeyunji.tool.framework.web.config.WebProperties" }, { "name": "lideeyunji.xss.enable", "type": "java.lang.Boolean", "description": "是否开启,默认为 true", - "sourceType": "com.lideeyunji.tool.framework.xss.config.XssProperties", - "defaultValue": true + "sourceType": "com.lideeyunji.tool.framework.xss.config.XssProperties" }, { "name": "lideeyunji.xss.exclude-urls", @@ -155,8 +152,7 @@ { "name": "lideeyunji.yunji.save-req-log", "type": "java.lang.Boolean", - "sourceType": "com.lideeyunji.tool.framework.apilog.config.ApiLogProperties", - "defaultValue": true + "sourceType": "com.lideeyunji.tool.framework.apilog.config.ApiLogProperties" } ], "hints": [] diff --git a/lidee-tool/tool-spring-boot-starter-websocket/target/classes/META-INF/spring-configuration-metadata.json b/lidee-tool/tool-spring-boot-starter-websocket/target/classes/META-INF/spring-configuration-metadata.json index cc8a2de..3ece857 100644 --- a/lidee-tool/tool-spring-boot-starter-websocket/target/classes/META-INF/spring-configuration-metadata.json +++ b/lidee-tool/tool-spring-boot-starter-websocket/target/classes/META-INF/spring-configuration-metadata.json @@ -11,15 +11,13 @@ "name": "lideeyunji.websocket.path", "type": "java.lang.String", "description": "WebSocket 的连接路径", - "sourceType": "com.lideeyunji.tool.framework.websocket.config.WebSocketProperties", - "defaultValue": "\/ws" + "sourceType": "com.lideeyunji.tool.framework.websocket.config.WebSocketProperties" }, { "name": "lideeyunji.websocket.sender-type", "type": "java.lang.String", "description": "消息发送器的类型 可选值:local、redis、rocketmq、kafka、rabbitmq", - "sourceType": "com.lideeyunji.tool.framework.websocket.config.WebSocketProperties", - "defaultValue": "local" + "sourceType": "com.lideeyunji.tool.framework.websocket.config.WebSocketProperties" } ], "hints": []