标签:varchar date field ice div 继承 import dig mod
映射关系:
表名 <-------> 类名 字段 <-------> 属性 表记录 <------->类实例对象
举例
#models.py from django.db import models class Book(models.Model): # 类名就是表名 继承models.Model id=models.AutoField(primary_key=True) #主键 自增厚在那个 title=models.CharField(max_length=32)#varchar(32) pubdate=models.DateField price=models.DecimalField(max_digits=6,decimal_places=2) publish=models.CharField(max_length=32)
标签:varchar date field ice div 继承 import dig mod
原文地址:http://www.cnblogs.com/lazyball/p/7810702.html