This commit is contained in:
ddrwode
2025-11-19 15:15:50 +08:00
parent f7343d26a3
commit efec2d729e
10 changed files with 3626 additions and 0 deletions

15
models/xstart.py Normal file
View File

@@ -0,0 +1,15 @@
from peewee import *
from models import db1, BaseModel
class Xstart(BaseModel):
id = AutoField(primary_key=True) # 自增主键
bit_id = IntegerField(null=True)
start = CharField(null=True)
x_id = IntegerField(null=True)
ip_id = IntegerField(null=True)
class Meta:
database = db1 # 所属数据库
table_name = 'xstart'