You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
461 B

from django.db import models
class BaseModel(models.Model):
"""所有模型的父类"""
delete_flag = models.CharField('是否启用', max_length=1, default='0', help_text='是否启用')
create_time = models.DateTimeField(auto_now_add=True, verbose_name='创建时间', help_text='创建时间')
update_time = models.DateTimeField(auto_now=True, verbose_name='更新时间', help_text='更新时间')
class Meta:
abstract = True