perf: 参数管理模块service层优化

This commit is contained in:
insistence
2024-07-08 16:47:17 +08:00
parent e9c4f295ce
commit 09f9dd2784
2 changed files with 52 additions and 25 deletions

View File

@@ -4,12 +4,16 @@ class CommonConstant:
WWW: www主域
HTTP: http请求
HTTPS: https请求
YES: 是否为系统默认(是)
NO: 是否为系统默认(否)
UNIQUE: 校验是否唯一的返回标识(是)
NOT_UNIQUE: 校验是否唯一的返回标识(否)
"""
WWW = 'www.'
HTTP = 'http://'
HTTPS = 'https://'
YES = 'Y'
NO = 'N'
UNIQUE = True
NOT_UNIQUE = False