chore: initial commit with config ignores

This commit is contained in:
ddrwode
2026-02-21 18:25:34 +08:00
commit 343f3a403c
12 changed files with 1195 additions and 0 deletions

22
models/xstart.py Normal file
View File

@@ -0,0 +1,22 @@
from peewee import *
from models import db1
from models.ips import Ips
class Xstart(Model):
id = AutoField(primary_key=True) # 自增主键
bit_id = CharField(null=True)
start = IntegerField(null=True)
x_id = IntegerField(null=True)
ip_id = IntegerField(null=True)
url_id = CharField(null=True)
class Meta:
database = db1 # 所属数据库
table_name = 'xstart'
if __name__ == '__main__':
Xstart.create_table()