We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed49d2 commit d906a10Copy full SHA for d906a10
backend/plugin/code_generator/templates/python/schema.jinja
@@ -23,9 +23,11 @@ class Update{{ schema_name }}Param({{ schema_name }}SchemaBase):
23
"""更新{{ doc_comment }}参数"""
24
25
26
-class Delete{{ schema_name }}Param({{ schema_name }}SchemaBase):
+class Delete{{ schema_name }}Param(SchemaBase):
27
"""删除{{ doc_comment }}参数"""
28
29
+ pks: list[int] = Field(description='{{ doc_comment }} ID 列表')
30
+
31
32
class Get{{ schema_name }}Detail({{ schema_name }}SchemaBase):
33
"""{{ doc_comment }}详情"""
0 commit comments