From b575f39854086fd82793493c237f4a3ae5d99e93 Mon Sep 17 00:00:00 2001 From: ycl Date: Wed, 23 Jul 2025 10:52:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20llms-full.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llms-full.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/llms-full.txt b/llms-full.txt index c20d948..20b3335 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -1392,6 +1392,12 @@ requestParams为请求参数列表,response为返回结构,requestParams中 - "优先使用QTO/BTO"意思是在满足规范的前提下,根据场景选择最合适的参数类型 ### 5. 本地代码阅读和编写指南 +#### 路径处理规范 +- **所有子模块文件路径必须以 `modules/` 开头** +- 当工具返回的路径为 `src/main/java/...` 格式时,需要根据文件内容识别模块名并补充完整路径 +- 完整路径格式:`modules/{模块名}/src/main/java/...` +- 示例:`modules/room_management/src/main/java/com/bnb/room_management/...` + #### 5.1 代码阅读 - 根据**设计元素到代码的映射规则及修改建议**,在约读代码的时候,你可以识别出对应的TOCO设计元素,通过工具获取TOCO设计元素信息,辅助理解代码语义,特别是对于ReadPlan,WritePlan的设计元素 - 读取类文件时,应该同时读取继承的基类文件(但注意不要去阅读BaseBOService里的代码)