from django.db import models class Author(models.Model): name = models.CharField(max_length=100) age = models.IntegerField()
確定! 回上一頁