This commit is contained in:
Administrator
2025-12-01 14:14:17 +08:00
parent 3afc7b9f1b
commit 0ad0b58b17
4 changed files with 75 additions and 34 deletions

View File

@@ -10,6 +10,7 @@ class Ips(Model):
username = CharField(null=True)
password = CharField(null=True)
start = IntegerField(null=True)
country = CharField(null=True)
class Meta:
database = db1

View File

@@ -6,7 +6,7 @@ from models.ips import Ips
class Xstart(Model):
id = AutoField(primary_key=True) # 自增主键
bit_id = IntegerField(null=True)
bit_id = CharField(null=True)
start = IntegerField(null=True)
x_id = IntegerField(null=True)
ip_id = IntegerField(null=True)