Files
tg_code/job_models/tg_capybara.py
Administrator 37e9d4038c gfregfregfr
2025-11-12 12:50:39 +08:00

19 lines
607 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
from peewee import *
class TgCapybara(Model):
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' # 表名