zhenxun_bot/plugins/web_ui/api/tabs/database/models/model.py
2024-01-14 17:48:15 +08:00

27 lines
364 B
Python

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