|
@@ -56,8 +56,7 @@ class AggregatePattern:
|
|
|
SELECT t1.id, dim_name, name, t1.description, t1.detail,
|
|
SELECT t1.id, dim_name, name, t1.description, t1.detail,
|
|
|
t2.output_type, t2.content,t2.constrains
|
|
t2.output_type, t2.content,t2.constrains
|
|
|
FROM modes t1 JOIN outputs t2 ON t1.output_id = t2.output_id
|
|
FROM modes t1 JOIN outputs t2 ON t1.output_id = t2.output_id
|
|
|
- WHERE standardization_status = 0
|
|
|
|
|
- LIMIT 5;
|
|
|
|
|
|
|
+ WHERE standardization_status = 0;
|
|
|
"""
|
|
"""
|
|
|
response = await self.mysql_client.async_fetch(query=query)
|
|
response = await self.mysql_client.async_fetch(query=query)
|
|
|
return response
|
|
return response
|
|
@@ -174,6 +173,7 @@ class AggregatePattern:
|
|
|
|
|
|
|
|
## 输出要求
|
|
## 输出要求
|
|
|
请严格按照以下JSON格式输出,无需考虑输出长度,不要丢失信息。
|
|
请严格按照以下JSON格式输出,无需考虑输出长度,不要丢失信息。
|
|
|
|
|
+输出 JSON 的每一个字段的 value 字段都必须是字符串类型,不能是其他类型。
|
|
|
|
|
|
|
|
## 输出格式
|
|
## 输出格式
|
|
|
{{
|
|
{{
|