更新 llms-full.txt

This commit is contained in:
ycl
2025-06-24 15:41:46 +08:00
parent a1b7012976
commit 2cef00c3e2

View File

@@ -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,