This commit is contained in:
27942
2025-10-22 17:05:04 +08:00
parent 07d38f2ea9
commit bcc94159de
5 changed files with 70 additions and 1 deletions

Binary file not shown.

View File

@@ -49,6 +49,17 @@ class Weex30(Model):
database = db
table_name = 'weex_30'
class Weex30Copy(Model):
id = IntegerField(primary_key=True)
open = FloatField(null=True)
high = FloatField(null=True)
low = FloatField(null=True)
close = FloatField(null=True)
class Meta:
database = db
table_name = 'weex_30_copy1'
# 连接到数据库
db.connect()