Commit 7220dd74 by jiaqiying

productName enum add

parent 8854819d
......@@ -3,7 +3,21 @@ __author__ = 'jiaqiying'
__data__ = "2021-05-06 03:01"
from enum import Enum
# 用例优先级枚举
class CaseGrade(Enum):
LOW = 0
MIDDLE = 1
HIGH = 2
\ No newline at end of file
HIGH = 2
# 产品名称枚举
class ProductName(Enum):
# 斑马信用app
BMC = "bmc"
# 企业云平台
BMY = "bmy"
# sso平台
SSO = "sso"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment