12 lines
302 B
Python
12 lines
302 B
Python
"""
|
|
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 |