重构了app

This commit is contained in:
ladeng07
2022-05-05 18:32:19 +08:00
parent 19440fe0e2
commit 5ca57df452
44 changed files with 338 additions and 63 deletions
+11
View File
@@ -0,0 +1,11 @@
from django.db import models
# Create your models here.
class Comments(models.Model):
post_time = models.DateTimeField(verbose_name="发布时间")
content = models.CharField(verbose_name="弹幕内容", max_length=50, blank=False)