mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
24 lines
334 B
Python
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]
|
|
"""插件列表"""
|