摘要: 实验楼表序列化 图片实列: model from utils.MyBaseModel import Base from django.db import models # # Create your models here. # 课程类别 class CourseType(Base): title 阅读全文
posted @ 2020-10-13 14:07 睁yan-ii 阅读(103) 评论(0) 推荐(0) 编辑
摘要: #课程标签 class CourseTag(Base): title = models.CharField('课程标签', max_length=32) sequence = models.IntegerField('展示顺序', default=10) class Meta: db_table = 阅读全文
posted @ 2020-10-13 08:18 睁yan-ii 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 实验楼表关系图 from utils.MyBaseModel import Base from django.db import models # # Create your models here. # 课程类别 class CourseType(Base): title = models.Cha 阅读全文
posted @ 2020-10-13 07:22 睁yan-ii 阅读(119) 评论(0) 推荐(0) 编辑