初始化项目

This commit is contained in:
zwf
2026-06-02 17:46:38 +08:00
commit 646a4d02c0
240 changed files with 33662 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
"""
OA 系统对接模块。
"""
class PushException(Exception):
"""
推送异常,用于发给OA系统。
"""
def __init__(self, message, flow_token=None, return_code=None):
super().__init__(message)
self.flow_token = flow_token
self.return_code = return_code