CloudH5Struct.php 828 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace addons\Sicpay\common\sdk\config;
  3. /**
  4. * 3.7.2 中消金快捷支付(secureplus)
  5. * @package addons\Sicpay\common\sdk\config
  6. */
  7. class CloudH5Struct extends BaseStruct
  8. {
  9. //银行编码
  10. public $bank_code = "UPOP";
  11. // 姓名
  12. public $user_name;
  13. //⽤户证件类型01:身份证;02:护照;03:其他
  14. public $user_cert_type;
  15. // ⽤户证件号码
  16. public $user_cert_no;
  17. // ⽤户银⾏卡号
  18. public $user_bank_card_no;
  19. // 手机号码
  20. public $user_mobile;
  21. public function __construct ($config = [])
  22. {
  23. parent::__construct( $config);
  24. }
  25. public function returnData ()
  26. {
  27. $data = parent::returnData(); // TODO: Change the autogenerated stub
  28. $data['form'] = $this->response['mweb_form'] ?? "";
  29. return $data;
  30. }
  31. }