mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
9 lines
127 B
Python
9 lines
127 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class CommonSql(BaseModel):
|
|
sql: str
|
|
"""sql语句"""
|
|
remark: str
|
|
"""备注"""
|