添加引导词枚举类
This commit is contained in:
parent
b3f0755c79
commit
00e11d0eb3
@ -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):
|
||||
"""
|
||||
业务操作类型
|
||||
|
||||
Loading…
Reference in New Issue
Block a user