更新 llms-full.txt

This commit is contained in:
ycl
2025-06-29 15:39:56 +08:00
parent 6154c93ef6
commit 99b494ef56

View File

@@ -764,12 +764,12 @@ DateTime endTime //会议结束时间
"query":{"type":"string","description":"查询语句,符合前述语法定义"},
"voOrDtoId":{"type":"string","description":"返回数据对象(VO或DTO)的uuid,创建的时候必须指定,更新的时候不传递"},
"outOrder":{"type":"array","description":"入参排序方式定义",
"items":{"type":"object","description":"定义字段排序方式","required":["field", "incr"],
"properties":{"fieldPath": {"type":"string","description":"字段名路径"},"incr": {"type":"boolean","description":"是否升序"}}}
"items":{"type":"object","description":"定义字段排序方式","required":["field", "direction"],
"properties":{"fieldPath": {"type":"string","description":"字段名路径"},"direction": {"type":"string","description":"排序方向可以是ASC(升序)或者DESC(降序)"}}}
},
"defaultOrder": {"type":"array","description":"默认排序方式定义",
"items": {"type":"object","description":"定义字段排序方式","required":["field", "incr"],
"properties":{"fieldPath": {"type":"string","description":"字段名"},"incr": {"type":"boolean","description":"是否升序"}}}
"items": {"type":"object","description":"定义字段排序方式","required":["field", "direction"],
"properties":{"fieldPath": {"type":"string","description":"字段名"},"direction": {"type":"string","description":"排序方向可以是ASC(升序)或者DESC(降序)"}}}
},
"filters": {"type": "array", "description":"过滤条件定义",
"items": {"type":"object","description":"定义过滤条件","required":["field", "filter"],