diff --git a/actions/switch_action.py b/actions/switch_action.py new file mode 100644 index 0000000000000000000000000000000000000000..362df71242db1fee132f05484bdde4df5b211783 --- /dev/null +++ b/actions/switch_action.py @@ -0,0 +1,28 @@ +# 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