Initial commit

This commit is contained in:
Your Name
2021-09-07 23:12:03 +08:00
commit 0f5e5327d8
354 changed files with 35438 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from django.db import models
class ToolsLibrary(models.Model):
id = models.IntegerField(primary_key=True)
name = models.CharField(db_column='name', max_length=100, blank=True, null=True)
sort = models.CharField(db_column='sort', max_length=200, blank=True, null=True)
example_file = models.CharField(db_column='example_file', max_length=200, blank=True, null=True)
show_chart = models.CharField(db_column='show_chart', max_length=200, blank=True, null=True)
visiting_time = models.IntegerField(db_column='visiting_time', blank=True, null=True)
downlode_time = models.IntegerField(db_column='downlode_time', blank=True, null=True)
page = models.IntegerField(db_column='page', blank=True, null=True)
chart = models.CharField(db_column='chart', max_length=200, blank=True, null=True)
url = models.CharField(db_column='url', max_length=200, blank=True, null=True)