From 2cef00c3e2a5ac5b4a18483a851f310d9051db9e Mon Sep 17 00:00:00 2001 From: ycl Date: Tue, 24 Jun 2025 15:41:46 +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 | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/llms-full.txt b/llms-full.txt index 1e17042..f9630bb 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -685,19 +685,21 @@ DateTime endTime; //会议结束时间 - 以json格式表达,json schema 定义如下 ```json { - "type":"object", + "type":"object","description":"读方案定义", "properties":{ "qto": { "type":"object", "properties":{ - "name": { - "type":"string","description":"查询的名称,表达了查询的意图;长度限制在32个字符内"}, - "description": {"type":"string","description":"查询需求的概括性描述;长度限制在256个字符内"}, - "generateCountApi": {"type":"boolean", "description":"需求是否需要生成计数接口"}, - "supportPaginate": {"type":"boolean", "description":"需求是否需要分页"}, + "name": {"type":"string","description":"读方案名称,表达了查询的意图;英语描述,单词之间使用下划线分割,长度限制在32个字符内"}, + "uuid": {"type":"string","description":"读服务设计元素的uuid,创建时不传入,在更新的时候必须传入"}, + "woId": {"type":"string","description":"查询对象的uuid,作为查询服务的上下文,创建的时候必须指定,更新的时候不传递"}, + "description": {"type":"string","description":"描述读方案的功能,长度限制在256个字符内"}, + "generateCountApi": {"type":"boolean", "description":"是否需要生成计数接口"}, + "supportPaginate": {"type":"boolean", "description":"是否需要分页"}, "supportUnPage":{"type":"boolean", "description":"如果不需要分页,一次性返回部数据,则返回true"}, - "supportWaterfall":{"type":"boolean","description":"需求是否需要瀑布流"}, - "query":{"type":"string","description":"需求的查询语句,符合前述语法定义"} + "supportWaterfall":{"type":"boolean","description":"是否需要瀑布流"}, + "query":{"type":"string","description":"查询语句,符合前述语法定义"}, + "voOrDtoId":{"type":"string","description":"返回数据对象(VO或DTO)的uuid,创建的时候必须指定,更新的时候不传递"} }, "required":["name","description","query"] } @@ -778,6 +780,8 @@ DateTime endTime; //会议结束时间 "qto": { "name": "get_unused_meeting_room_list", "description": "获取未使用的会议室(包含当前会议已选择的会议室)", + "woId":"759bedd4-4540-4de6-b65d-d44912fb0991", + "dtoOrVoId":"e50c02c3-f336-4dc6-88e1-24ffe3dea1e2" "generateCountApi": true, "supportPaginate": true, "supportUnPage": false,