更新 llms-full.txt
This commit is contained in:
@@ -592,48 +592,39 @@ DateTime endTime; //会议结束时间
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"type":"object",
|
"type":"object",
|
||||||
|
"description":"描述了一个写方案",
|
||||||
"properties":{
|
"properties":{
|
||||||
"name":{"type":"string","description":"需求的意图描述;长度限制在32个字符之内"},
|
"name":{"type":"string","description":"需求的意图描述;长度限制在32个字符之内"},
|
||||||
"description":{"type":"string","description":"需求的概括性描述;长度限制在256个字符内"},
|
"description":{"type":"string","description":"需求的概括性描述;长度限制在256个字符内"},
|
||||||
"bo": {"type":"string","description":"聚合根的名称,确定了唯一聚合"},
|
"bo": {"type":"string","description":"聚合根的名称,确定了唯一聚合"},
|
||||||
"operations": {"type":"array","description":"描述了对各个Bo的操作",
|
"operations": {
|
||||||
"items":{
|
"type":"array","description":"定义了对某个实体的操作,包括操作类型和相关字段",
|
||||||
"type": "object",
|
"items":{
|
||||||
"properties":{
|
"type": "object",
|
||||||
"bo":{"type":"string","description":"具体操作的实体"},
|
"properties":{
|
||||||
"action":{"type":"string","description":"对前述实体的"},
|
"bo":{"type":"string","description":"具体操作的实体"},
|
||||||
"unique_key": {
|
"action":{"type":"string","description":"对前述实体的操作"},
|
||||||
"type":"array",
|
"unique_key": {
|
||||||
"description":"唯一键包含的字段列表",
|
"type":"array",
|
||||||
"items":{
|
"description":"唯一键包含的字段列表,该唯一键用于确定数据记录",
|
||||||
"type":"string",
|
"items":{"type":"string","description":"字段名称,组成唯一键的字段名称"}
|
||||||
"description":"字段名称,组成唯一键的字段"
|
},
|
||||||
}
|
"fields":{
|
||||||
},
|
"type":"array",
|
||||||
"fields":{
|
"items":{"type":"string","description":"字段名称,必须来自bo对象"},
|
||||||
"type":"array",
|
"description":"对选定的Bo的操作的字段列表"
|
||||||
"items":{
|
},
|
||||||
"type":"string",
|
"incrFields":{
|
||||||
"description":"字段名称,必须来自bo对象"
|
"type":"array",
|
||||||
},
|
"items":{ "type":"string", "description":"增量字段名称"},
|
||||||
"description":"对选定的Bo的操作的字段列表"
|
"description":"选定的字段中进行增量操作的字段列表"
|
||||||
},
|
},
|
||||||
"incrFields":{
|
"required":["bo","action","fields"]
|
||||||
"type":"array",
|
}
|
||||||
"items":{
|
}
|
||||||
"type":"string",
|
}
|
||||||
"description":"增量字段名称"
|
},
|
||||||
},
|
"required":["name","description","operations","bo"]
|
||||||
"description":"选定的字段中进行增量操作的字段列表"
|
|
||||||
},
|
|
||||||
"required":["bo","action","fields"]
|
|
||||||
},
|
|
||||||
"description":"定义了对某个实体的操作,包括操作类型和相关字段"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required":["name","description","operations"],
|
|
||||||
"description":"描述了对一个聚合的变更操作"
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
- **例子**
|
- **例子**
|
||||||
|
|||||||
Reference in New Issue
Block a user