|
|
@@ -99,18 +99,18 @@ class QianBaoWithdrawService
|
|
|
static function onMessage($chatId, $text, $messageId,$stepStatus)
|
|
|
{
|
|
|
switch ($stepStatus) {
|
|
|
- case StepStatus::INPUT_WITHDRAW_QB_MONEY:
|
|
|
+ case StepStatus::INPUT_WITHDRAW_QB_MONEY://输入提现金额
|
|
|
$res = QianBaoWithdrawService::inputQbAmount($chatId, $text, $messageId);
|
|
|
return $res;
|
|
|
break;
|
|
|
- case StepStatus::QB_INPUT_BANK_NAME:
|
|
|
+ case StepStatus::QB_INPUT_BANK_NAME://输入银行名称
|
|
|
$res = QianBaoWithdrawService::inputBankName($chatId, $text, $messageId);
|
|
|
return $res;
|
|
|
- case StepStatus::QB_INPUT_CARD_NO:
|
|
|
+ case StepStatus::QB_INPUT_CARD_NO://输入银行卡号/支付宝账号
|
|
|
$res = QianBaoWithdrawService::inputCardNo($chatId, $text, $messageId);
|
|
|
return $res;
|
|
|
break;
|
|
|
- case StepStatus::QB_INPUT_ACCOUNT:
|
|
|
+ case StepStatus::QB_INPUT_ACCOUNT://输入姓名
|
|
|
$res = QianBaoWithdrawService::inputAccount($chatId, $text, $messageId);
|
|
|
return $res;
|
|
|
break;
|