08- 图书管理系统

1 model from django.db import models # Create your models here. class Book(models.Model): id = models.AutoField(primary_key=True) title = models.CharField(max_length=32) pub_date = mode
相关文章
相关标签/搜索