mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
15 lines
425 B
Python
15 lines
425 B
Python
from nonebot.adapters.onebot.v11 import Bot, MessageEvent
|
|
from pydantic import BaseModel, create_model
|
|
from typing import Any
|
|
|
|
|
|
class ShopParam(BaseModel):
|
|
goods_name: str
|
|
user_id: int
|
|
group_id: int
|
|
bot: Any
|
|
event: MessageEvent
|
|
num: int # 道具单次使用数量
|
|
send_success_msg: bool = True # 是否发送使用成功信息
|
|
max_num_limit: int = 1 # 单次使用最大次数
|