Files
fastapi_best_architecture/backend/plugin/code_generator/schema/code.py
Wu Clan 5762834744 Update the ruff rules and format the code (#846)
* Update the ruff rules and format the code

* Update the per-file-ignores

* Update the ci

* Update rules

* Fix codes

* Fix pagination

* Update rules
2025-10-10 19:02:49 +08:00

12 lines
330 B
Python

from pydantic import Field
from backend.common.schema import SchemaBase
class ImportParam(SchemaBase):
"""导入参数"""
app: str = Field(description='应用名称,用于代码生成到指定 app')
table_schema: str = Field(description='数据库名')
table_name: str = Field(description='数据库表名')