From a139300b9ed4c82b9ece90a5fd2840319988a953 Mon Sep 17 00:00:00 2001 From: ycl Date: Tue, 5 Aug 2025 12:05:20 +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 | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/llms-full.txt b/llms-full.txt index e1bce93..258ad69 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -897,17 +897,21 @@ DateTime endTime; //会议结束时间 - **职责:** 读方案对应的数据库查询方法 - **唯一标识符位置:** 其对应的唯一标志在类注解@AutoGenerated中指定,uuid规则: ${ReadPlan在TOCO中的uuid}|QTO|DAO - **QueryExecutor** - - **生成产物** 对于返回**VO**的查询方案,在controller层生成一个Java类 - - **命名规则:** 类名以QueryExecutor结尾(${WritePlanName}QueryExecutor) + - **生成产物** 对于返回**VO**的查询方案,在controller层生成一个Java类,对于分页查询、不分页返回全量、瀑布流查询、计数都有后独立的函数实现 + - 分页查询, 会生成一个 **Paged函数, 返回VSQueryResult类型 + - 不分页返回全量, 会生成一个query**函数,返回List类型 + - 瀑布流,会生成一个,**Waterfall函数,返回VSQueryResult类型 + - 查询数量, 会生成一个 **Count函数,返回Integer + - **命名规则:** 类名以QueryExecutor结尾(${VoName}QueryExecutor) - **类路径:** 位于 ```**.entrance.web.query.executor```包路径下 - **职责:** 把QtoService返回的id数据转化成目标**VO** - **QueryService** - **生成产物** 对于返回**DTO**的查询方案,在service层生成一个Java类,对于分页查询、不分页返回全量、瀑布流查询、计数都有后独立的函数实现 - - 分页查询, 会生成一个queryPaged函数 - - 不分页返回全量, 会生成一个query函数 - - 瀑布流查询会生成2个函数: queryWaterfall负责返回数据、hasMore负责确定是否还有下拉数据 - - 计数,会生成一个count函数,返回查询返回的数据的总量 - - **命名规则:** 类名以QueryService结尾(${WritePlanName}QueryService) + - 分页查询, 会生成一个 **Paged函数,, 返回VSQueryResult类型 + - 不分页返回全量, 会生成一个query**函数, 返回List类型 + - 瀑布流,会生成一个,**Waterfall函数, 返回VSQueryResult类型 + - 查询数量, 会生成一个 **Count函数,返回Integer + - **命名规则:** 类名以QueryService结尾(${DtoName}QueryService) - **类路径:** 位于 ```**.service.index.entity```包路径下 - **职责:** 把QtoService返回的id数据转化成目标**DTO** - **例子:**