maxkb/apps/common/mixins/app_model_mixin.py
2025-01-13 11:15:51 +08:00

19 lines
501 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding=utf-8
"""
@project: maxkb
@Author
@file app_model_mixin.py
@date2023/9/21 9:41
@desc:
"""
from django.db import models
from django.utils.translation import gettext_lazy as _
class AppModelMixin(models.Model):
create_time = models.DateTimeField(verbose_name=_('Create time'), auto_now_add=True)
update_time = models.DateTimeField(verbose_name=_('Update time'), auto_now=True)
class Meta:
abstract = True
ordering = ['create_time']