9 lines
126 B
Python
9 lines
126 B
Python
import enum
|
|
|
|
|
|
class ApiCode(enum.Enum):
|
|
OK = 20000
|
|
PARAM_ERROR = 30000
|
|
DB_ERROR = 40000
|
|
RUNTIME_ERROR = 50000
|