You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
<?php
|
|
|
|
namespace Tansilu\HfPayLib\factory\object\query;
|
|
|
|
use Tansilu\HfPayLib\factory\object\ResponseObj;
|
|
|
|
/**
|
|
* 开户状态
|
|
*
|
|
* @property-read $resp_code 应答返回码
|
|
* @property-read $resp_desc 应答描述
|
|
* @property-read $mer_cust_id 商户客户号
|
|
* @property-read $user_cust_id 用户客户号
|
|
* @property-read $order_date 订单日期
|
|
* @property-read $order_id 订单号
|
|
* @property-read $trans_type 交易类型
|
|
* @property-read $trans_stat 交易状态
|
|
* @property-read $trans_resp_code 交易返回码
|
|
* @property-read $trans_resp_desc 交易返回描述
|
|
* @property-read $platform_seq_id 原交易流水号
|
|
* @property-read $acct_id 账户信息
|
|
* @property-read $fee_cust_id 手续费客户号
|
|
* @property-read $fee_amt 手续费金额
|
|
* @property-read $fee_acct_id 手续费子账号
|
|
* @property-read $mer_priv 商户私有域
|
|
* @property-read $extension 扩展域
|
|
*
|
|
* @see https://hfpay.cloudpnr.com/customers/nft/#/query/openAccountQuery
|
|
*/
|
|
class OpenStatus
|
|
{
|
|
use ResponseObj;
|
|
} |