zhenxun_bot/plugins/web_ui/api/tabs/database/models/model.py
2023-12-31 01:58:26 +08:00

24 lines
334 B
Python

from typing import List
from pydantic import BaseModel
from utils.models import CommonSql
class SqlText(BaseModel):
"""
sql语句
"""
sql: str
class SqlModel(BaseModel):
name: str
"""插件中文名称"""
plugin_name: str
"""插件名称"""
sql_list: List[CommonSql]
"""插件列表"""