Commit 9f105e0a authored by 17322369953's avatar 17322369953
Browse files

添加开关,对于常规流程,需要关闭专题校验功能,例如信用管控,证照,关联交易等。

No related merge requests found
Showing with 28 additions and 0 deletions
+28 -0
# author:qinguanglei
# ddate:2023/11/21 17:12
class SwitchAction(object):
def close_relate_verify(self):
# 关闭关联交易验证,常规测试,关闭该校验
pass
def open_relate_verify(self):
# 打开关联交易验证
pass
def close_license_verify(self):
# 关闭证照校验,常规测试,关闭该校验
pass
def open_license_verify(self):
# 打开证照校验
pass
def close_credit_control(self):
# 关闭信用管控,常规测试,关闭该校验
pass
def open_credit_control(self):
# 打开信用管控
pass
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment