diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index f99f03d..856a1bb 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -31,50 +31,9 @@
-
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -194,7 +153,7 @@
-
+
1650187914913
@@ -210,7 +169,14 @@
1650785005055
-
+
+ 1651746739401
+
+
+
+ 1651746739401
+
+
@@ -244,7 +210,8 @@
-
+
+
@@ -319,10 +286,10 @@
-
+
-
+
diff --git a/utils/get_error_msg.py b/utils/get_error_msg.py
new file mode 100644
index 0000000..f9fe2c4
--- /dev/null
+++ b/utils/get_error_msg.py
@@ -0,0 +1,9 @@
+def get_error_msg(code="20000"):
+ error_set = {
+ "20000": "成功",
+ "50000": "意外错误",
+ "50403": "Forbidden",
+ "40000": "请求方法错误",
+ "40001": "JSON解析错误",
+ }
+ return error_set.get(str(code))