models.py 434 B

123456789101112131415
  1. from django.db import models
  2. class Goods(models.Model):
  3. """商品模型类"""
  4. id = models.AutoField(primary_key=True, db_column='gid')
  5. name = models.CharField(max_length=50, db_column='gname')
  6. price = models.DecimalField(max_digits=10, decimal_places=2, db_column='gprice')
  7. image = models.CharField(max_length=255, db_column='gimage')
  8. class Meta:
  9. db_table = 'tb_goods'
  10. ordering = ('id', )