dingxin_toolbox

10 lines
274 B

2 years ago
from django.db import models
# Create your models here.
class BaseModels(models.Model):
2 years ago
update_time = models.DateTimeField(auto_now=True, verbose_name='最后更新时间', help_text='最后更新时间')
2 years ago
class Meta:
abstract = True # 设置为抽象类