zhenxun_bot/zhenxun/models/user_props.py

26 lines
676 B
Python
Raw Normal View History

2024-02-25 03:18:34 +08:00
from typing import Dict
from tortoise import fields
from zhenxun.services.db_context import Model
from .sign_user import SignUser
class UserProps(Model):
id = fields.IntField(pk=True, generated=True, auto_increment=True)
"""自增id"""
user_id = fields.CharField(255, unique=True, description="用户id")
"""用户id"""
name = fields.CharField(255, description="道具名称")
"""道具名称"""
property: Dict[str, int] = fields.JSONField(default={}) # type: ignore
"""道具"""
platform = fields.CharField(255, null=True)
"""平台"""
class Meta:
table = "user_props"
table_description = "用户道具表"