From e776cee01889c03a9aec0f827349b0ca1d95b434 Mon Sep 17 00:00:00 2001 From: JING Date: Mon, 14 Sep 2026 12:02:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=B1=87=E4=BB=98=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Constant.php | 16 +++++++++++----- src/factory/impl/ManageFactory.php | 2 +- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/Constant.php b/src/Constant.php index 738b390..4497861 100644 --- a/src/Constant.php +++ b/src/Constant.php @@ -29,13 +29,19 @@ class Constant const TRANS_TYPE_PERSON = 7; const TRANS_TYPE_WALLET = 8; - const CARD_TYPE_USER = '0'; - const CARD_TYPE_COMPANY = '1'; /** - * 取现卡 标识符 0非取现卡 1取现卡 + * 绑卡类型 card_type + * 0:对公 + * 1:对私 */ - const CARD_CASH_FLAG_NONE = 0; - const CARD_CASH_FLAG_ACTIVE = 1; + const CARD_TYPE_USER = '1'; + const CARD_TYPE_COMPANY = '0'; + /** + * 默认取现卡标识 default_cash_flag + * 0:非默认取现卡 1:默认取现卡 + */ + const CARD_CASH_FLAG_NONE = '0'; + const CARD_CASH_FLAG_ACTIVE = '1'; /** * 文件类型 diff --git a/src/factory/impl/ManageFactory.php b/src/factory/impl/ManageFactory.php index b7e8995..0f856a2 100644 --- a/src/factory/impl/ManageFactory.php +++ b/src/factory/impl/ManageFactory.php @@ -116,7 +116,7 @@ class ManageFactory extends Factory 'user_cust_id' => $customId, 'order_id' => $orderId, 'order_date' => $orderDate, - 'bank_card_id' => $bindCardId, + 'bind_card_id' => $bindCardId, 'card_buss_type' => $cardType, 'bg_ret_url' => $bgRetUrl, ];