| 12345678910111213141516171819202122 |
- <?php
- namespace common\expand\alipay\transfer\model;
- use common\expand\alipay\AlipayModel;
- /**
- * 单笔转账模型
- * @property int $mall_id
- * @property float $trans_amount
- * @property string $order_title
- * @property string $remark
- * @property string $out_biz_no
- * @property string $product_code
- * @property string $biz_scene
- * @property PayeeInfoModel $payee_info
- * @property BusinessParamsModel $business_params
- */
- class SingleTransferModel extends AlipayModel
- {
- }
|