yzk_wechat_event/apps/warning/choices.py

18 lines
493 B
Python
Raw Normal View History

2023-12-15 17:42:32 +08:00
from django.db import models
class WarningLogStatusChoices(models.IntegerChoices):
CREATED = 0, '创建等待报警'
WARNED_AND_NEED_WARN = 1, '已报警且需要再报警'
WARNED_AND_NO_WARN = 2, '已报警且不需要再报警'
CLOSED = 3, '已关闭'
class WarningSettingTypeChoices(models.IntegerChoices):
DINGDING = 0, '钉钉'
class WarningLogTypeChoices(models.IntegerChoices):
FAN_WARNING = 1, '接粉报警'
AUTHORIZATION_WARNING = 2, '授权报警'