初始化项目
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user