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