AlipayF2FPayResult.php 791 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace app\common\services\alipay\f2fpay\model\result;
  3. /**
  4. * Created by PhpStorm.
  5. * User: xudong.ding
  6. * Date: 16/5/19
  7. * Time: 下午2:09
  8. */
  9. class AlipayF2FPayResult
  10. {
  11. private $tradeStatus;
  12. private $response;
  13. public function __construct($response)
  14. {
  15. $this->response = $response;
  16. }
  17. public function AlipayF2FPayResult($response)
  18. {
  19. $this->__construct($response);
  20. }
  21. public function setTradeStatus($tradeStatus)
  22. {
  23. $this->tradeStatus = $tradeStatus;
  24. }
  25. public function getTradeStatus()
  26. {
  27. return $this->tradeStatus;
  28. }
  29. public function setResponse($response)
  30. {
  31. $this->response = $response;
  32. }
  33. public function getResponse()
  34. {
  35. return $this->response;
  36. }
  37. }
  38. ?>