重构了app

This commit is contained in:
ladeng07
2022-05-05 18:32:19 +08:00
parent 19440fe0e2
commit 5ca57df452
44 changed files with 338 additions and 63 deletions
+39
View File
@@ -0,0 +1,39 @@
from django.db import models
from django.core.validators import validate_comma_separated_integer_list
class Department(models.Model):
did = models.IntegerField("部门ID")
department = models.CharField("部门", max_length=10) # 如“程序部”
department_en = models.CharField("部门英文名称", max_length=30) # 如“程序部”
content = models.CharField("内容", max_length=800) # 如部门介绍/部门要求
introduction = models.CharField("介绍", max_length=800) # 如部门介绍/部门要求
class Meta:
db_table = 'it_Department'
verbose_name_plural = u'部门详情'
class History(models.Model):
grade = models.IntegerField("年级")
did = models.IntegerField("部门ID")
department = models.CharField("部门", max_length=10) # 如“程序部”
class Meta:
db_table = 'it_History'
verbose_name_plural = u'历史表'
class Members(models.Model):
# 默认id作为成员id
avatar = models.ImageField("头像", upload_to="avatar", blank=True)
did = models.IntegerField("所属部门ID", default=0)
grade = models.IntegerField("年级")
name = models.CharField("成员姓名", max_length=10)
motto = models.CharField("座右铭", max_length=30)
department = models.CharField("所属部门", max_length=10)
class Meta:
db_table = 'it_Members'
verbose_name_plural = u'部门成员'