151 lines
2.3 KiB
PHP
151 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* ALIPAY API: alipay.pai.partner.result.get request
|
|
*
|
|
* @author auto create
|
|
* @since 1.0, 2023-05-29 19:38:36
|
|
*/
|
|
class AlipayPaiPartnerResultGetRequest
|
|
{
|
|
/**
|
|
* 二维码码值
|
|
**/
|
|
private $code;
|
|
|
|
/**
|
|
* 扩展参数信息
|
|
**/
|
|
private $extInfo;
|
|
|
|
/**
|
|
* 新浪用户userId
|
|
**/
|
|
private $partnerUserId;
|
|
|
|
private $apiParas = array();
|
|
private $terminalType;
|
|
private $terminalInfo;
|
|
private $prodCode;
|
|
private $apiVersion="1.0";
|
|
private $notifyUrl;
|
|
private $returnUrl;
|
|
private $needEncrypt=false;
|
|
|
|
|
|
public function setCode($code)
|
|
{
|
|
$this->code = $code;
|
|
$this->apiParas["code"] = $code;
|
|
}
|
|
|
|
public function getCode()
|
|
{
|
|
return $this->code;
|
|
}
|
|
|
|
public function setExtInfo($extInfo)
|
|
{
|
|
$this->extInfo = $extInfo;
|
|
$this->apiParas["ext_info"] = $extInfo;
|
|
}
|
|
|
|
public function getExtInfo()
|
|
{
|
|
return $this->extInfo;
|
|
}
|
|
|
|
public function setPartnerUserId($partnerUserId)
|
|
{
|
|
$this->partnerUserId = $partnerUserId;
|
|
$this->apiParas["partner_user_id"] = $partnerUserId;
|
|
}
|
|
|
|
public function getPartnerUserId()
|
|
{
|
|
return $this->partnerUserId;
|
|
}
|
|
|
|
public function getApiMethodName()
|
|
{
|
|
return "alipay.pai.partner.result.get";
|
|
}
|
|
|
|
public function setNotifyUrl($notifyUrl)
|
|
{
|
|
$this->notifyUrl=$notifyUrl;
|
|
}
|
|
|
|
public function getNotifyUrl()
|
|
{
|
|
return $this->notifyUrl;
|
|
}
|
|
|
|
public function setReturnUrl($returnUrl)
|
|
{
|
|
$this->returnUrl=$returnUrl;
|
|
}
|
|
|
|
public function getReturnUrl()
|
|
{
|
|
return $this->returnUrl;
|
|
}
|
|
|
|
public function getApiParas()
|
|
{
|
|
return $this->apiParas;
|
|
}
|
|
|
|
public function getTerminalType()
|
|
{
|
|
return $this->terminalType;
|
|
}
|
|
|
|
public function setTerminalType($terminalType)
|
|
{
|
|
$this->terminalType = $terminalType;
|
|
}
|
|
|
|
public function getTerminalInfo()
|
|
{
|
|
return $this->terminalInfo;
|
|
}
|
|
|
|
public function setTerminalInfo($terminalInfo)
|
|
{
|
|
$this->terminalInfo = $terminalInfo;
|
|
}
|
|
|
|
public function getProdCode()
|
|
{
|
|
return $this->prodCode;
|
|
}
|
|
|
|
public function setProdCode($prodCode)
|
|
{
|
|
$this->prodCode = $prodCode;
|
|
}
|
|
|
|
public function setApiVersion($apiVersion)
|
|
{
|
|
$this->apiVersion=$apiVersion;
|
|
}
|
|
|
|
public function getApiVersion()
|
|
{
|
|
return $this->apiVersion;
|
|
}
|
|
|
|
public function setNeedEncrypt($needEncrypt)
|
|
{
|
|
|
|
$this->needEncrypt=$needEncrypt;
|
|
|
|
}
|
|
|
|
public function getNeedEncrypt()
|
|
{
|
|
return $this->needEncrypt;
|
|
}
|
|
|
|
}
|