⏱️ 功能 1:添加会议过期时间字段

This commit is contained in:
2026-04-05 09:43:17 +08:00
parent 49047b37e4
commit d5c6c3c786

View File

@@ -21,6 +21,7 @@ class Meeting(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
started_at = models.DateTimeField(null=True, blank=True)
ended_at = models.DateTimeField(null=True, blank=True)
expires_at = models.DateTimeField(null=True, blank=True, verbose_name="过期时间")
# 主持龙虾(负责生成会议纪要)
host_agent_id = models.CharField(max_length=100, null=True, blank=True, verbose_name='主持 Agent ID')