You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
418 B
Python
14 lines
418 B
Python
from django.db import models
|
|
|
|
# Create your models here.
|
|
|
|
|
|
class Event(models.Model):
|
|
event_name = models.CharField(max_length=256, default='', verbose_name='事件名')
|
|
create_time = models.DateTimeField(auto_now_add=True, verbose_name='创建时间')
|
|
update_time = models.DateTimeField(auto_now=True, verbose_name='更新时间')
|
|
|
|
class Meta:
|
|
db_table = 'tp_event'
|
|
ordering = ['-id']
|