167 lines
2.6 KiB
PHP
167 lines
2.6 KiB
PHP
|
|
<?php
|
|||
|
|
/**
|
|||
|
|
* ALIPAY API: alipay.gotone.ackcode.verify request
|
|||
|
|
*
|
|||
|
|
* @author auto create
|
|||
|
|
* @since 1.0, 2024-03-01 16:26:57
|
|||
|
|
*/
|
|||
|
|
class AlipayGotoneAckcodeVerifyRequest
|
|||
|
|
{
|
|||
|
|
/**
|
|||
|
|
* 校验码
|
|||
|
|
**/
|
|||
|
|
private $ackCode;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 区分相同的手机号、业务类型,但不同业务场景的手机校验码等情况校验。比如使用order_n
|
|||
|
|
**/
|
|||
|
|
private $bizNo;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 手机校验码业务类型,为空默认DEFAULT_TYPE
|
|||
|
|
**/
|
|||
|
|
private $bizType;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 接收校验码短信手机号
|
|||
|
|
**/
|
|||
|
|
private $mobile;
|
|||
|
|
|
|||
|
|
private $apiParas = array();
|
|||
|
|
private $terminalType;
|
|||
|
|
private $terminalInfo;
|
|||
|
|
private $prodCode;
|
|||
|
|
private $apiVersion="1.0";
|
|||
|
|
private $notifyUrl;
|
|||
|
|
private $returnUrl;
|
|||
|
|
private $needEncrypt=false;
|
|||
|
|
|
|||
|
|
|
|||
|
|
public function setAckCode($ackCode)
|
|||
|
|
{
|
|||
|
|
$this->ackCode = $ackCode;
|
|||
|
|
$this->apiParas["ack_code"] = $ackCode;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public function getAckCode()
|
|||
|
|
{
|
|||
|
|
return $this->ackCode;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public function setBizNo($bizNo)
|
|||
|
|
{
|
|||
|
|
$this->bizNo = $bizNo;
|
|||
|
|
$this->apiParas["biz_no"] = $bizNo;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public function getBizNo()
|
|||
|
|
{
|
|||
|
|
return $this->bizNo;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public function setBizType($bizType)
|
|||
|
|
{
|
|||
|
|
$this->bizType = $bizType;
|
|||
|
|
$this->apiParas["biz_type"] = $bizType;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public function getBizType()
|
|||
|
|
{
|
|||
|
|
return $this->bizType;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public function setMobile($mobile)
|
|||
|
|
{
|
|||
|
|
$this->mobile = $mobile;
|
|||
|
|
$this->apiParas["mobile"] = $mobile;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public function getMobile()
|
|||
|
|
{
|
|||
|
|
return $this->mobile;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public function getApiMethodName()
|
|||
|
|
{
|
|||
|
|
return "alipay.gotone.ackcode.verify";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
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;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|