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, ];