fix: 修复前后端类型、配置及工程结构问题#10
Open
MS33834 wants to merge 1 commit into
Open
Conversation
- 统一前端 ApiResponse 类型并修复 TS 报错 - 修复 Vite 代理误匹配 /api-market - 统一后端逻辑删除字段为 deleted tinyint - 删除 AIGC 服务不存在的 Dubbo 扫描包 - 删除事件服务多余的 mapper-locations - 重命名 inner-intergration 为 inner-integration - 移除 spring-boot-maven-plugin 的 skip 配置 Closes DevYangJC#3, closes DevYangJC#4, closes DevYangJC#5, closes DevYangJC#6, closes DevYangJC#7, closes DevYangJC#8, closes DevYangJC#9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
这次改动把最近 Review 出来的一堆“编译不过/启动报错/配置对不上”的问题一次性修了,主要包括:
前端
ApiResponse<T>类型,所有api/*.ts改从request.ts导入request和ApiResponse;/api-market被误转发到后端。后端
deletedtinyint +@TableLogic,值1/0;mapper-locations;inner-intergration→inner-integration,同步所有 POM 和文档引用;spring-boot-maven-plugin的<skip>true</skip>。验证
npm run type-check通过;npm run build通过;mvn compile,但已做静态检查,无deletedAt/isDeleted残留引用。Closes #3, closes #4, closes #5, closes #6, closes #7, closes #8, closes #9