We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Django模型:
from django.db import models class Education(models.Model): school = models.CharField(max_length=255, verbose_name='学校') college = models.CharField(max_length=255, verbose_name='学院') department = models.CharField(max_length=255, verbose_name='系') major = models.CharField(max_length=255, verbose_name='专业') degree = models.CharField(max_length=16, verbose_name='学历') start_year = models.IntegerField(verbose_name='入学年份') end_year = models.IntegerField(verbose_name='毕业年份') class Meta: verbose_name = '教育经历' verbose_name_plural = '教育经历'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Django模型:
The text was updated successfully, but these errors were encountered: