ecm algochannel 变更为always_on 为false

This commit is contained in:
caoqianming 2023-03-03 10:03:41 +08:00
parent f96a62d5e9
commit 6f25ebdd42
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ class AlgoChannel(BaseModel):
algo = models.ForeignKey(EventCate, verbose_name='关联算法', on_delete=models.CASCADE)
vchannel = models.ForeignKey(TDevice, verbose_name='视频通道', on_delete=models.CASCADE)
always_on = models.BooleanField("始终开启", default=True)
always_on = models.BooleanField("实时开启", default=False)
class Meta:
unique_together = ('algo', 'vchannel')