baidu-reporter/app/constants/api_result.py

9 lines
126 B
Python
Raw Normal View History

2025-04-03 22:11:20 +08:00
import enum
class ApiCode(enum.Enum):
OK = 20000
PARAM_ERROR = 30000
DB_ERROR = 40000
RUNTIME_ERROR = 50000