Files
to_session/models/tg_capybara.py
Administrator a0720d80dc fefdwef
2025-11-12 12:54:37 +08:00

19 lines
622 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from models import db, BaseModel
from peewee import *
class TgCapybara(BaseModel):
id = AutoField() # 自增主键
phone = CharField(null=True) # 电话,允许为空
user_data = CharField(null=True) # 用户数据,允许为空
token = CharField(null=True) # 令牌,允许为空
url = CharField(null=True) # URL允许为空
wallet_v4 = CharField(null=True) # URL允许为空
num = IntegerField(null=True) # 数字,允许为空
num1 = IntegerField(null=True) # 数字,允许为空
class Meta:
database = db
table_name = 'tg_capybara' # 表名