添加引导词枚举类

This commit is contained in:
haotian 2025-07-28 11:29:27 +08:00
parent b3f0755c79
commit 00e11d0eb3

View File

@ -1,6 +1,19 @@
from enum import Enum
class GuideWordType(Enum):
"""
引导词类型
NEWVISITOR 新访客 0
BOOKEDVISITOR 已预约访客 1
STAFF 员工 2
CHAT 聊天关键词 3
"""
NEWVISITOR = 0
BOOKEDVISITOR = 1
STAFF = 2
CHAT = 3
class BusinessType(Enum):
"""
业务操作类型