|
|
<?php
|
|
|
/**
|
|
|
* ALIPAY API: alipay.pass.file.add request
|
|
|
*
|
|
|
* @author auto create
|
|
|
* @since 1.0, 2017-12-07 20:13:48
|
|
|
*/
|
|
|
class AlipayPassFileAddRequest
|
|
|
{
|
|
|
/**
|
|
|
* 支付宝pass文件二进制Base64加密字符串
|
|
|
**/
|
|
|
private $fileContent;
|
|
|
|
|
|
/**
|
|
|
* 支付宝用户识别信息:
|
|
|
当 recognition_type=1时, recognition_info={“partner_id”:”2088102114633762”,“out_trade_no”:”1234567”};
|
|
|
当recognition_type=2时, recognition_info={“user_id”:”2088102114633761“}
|
|
|
当recognition_type=3时,recognition_info={“mobile”:”136XXXXXXXX“}
|
|
|
**/
|
|
|
private $recognitionInfo;
|
|
|
|
|
|
/**
|
|
|
* Alipass添加对象识别类型【1--订单信息;2--支付宝userId;3--支付宝绑定手机号】
|
|
|
**/
|
|
|
private $recognitionType;
|
|
|
|
|
|
private $apiParas = array();
|
|
|
private $terminalType;
|
|
|
private $terminalInfo;
|
|
|
private $prodCode;
|
|
|
private $apiVersion="1.0";
|
|
|
private $notifyUrl;
|
|
|
private $returnUrl;
|
|
|
private $needEncrypt=false;
|
|
|
|
|
|
|
|
|
public function setFileContent($fileContent)
|
|
|
{
|
|
|
$this->fileContent = $fileContent;
|
|
|
$this->apiParas["file_content"] = $fileContent;
|
|
|
}
|
|
|
|
|
|
public function getFileContent()
|
|
|
{
|
|
|
return $this->fileContent;
|
|
|
}
|
|
|
|
|
|
public function setRecognitionInfo($recognitionInfo)
|
|
|
{
|
|
|
$this->recognitionInfo = $recognitionInfo;
|
|
|
$this->apiParas["recognition_info"] = $recognitionInfo;
|
|
|
}
|
|
|
|
|
|
public function getRecognitionInfo()
|
|
|
{
|
|
|
return $this->recognitionInfo;
|
|
|
}
|
|
|
|
|
|
public function setRecognitionType($recognitionType)
|
|
|
{
|
|
|
$this->recognitionType = $recognitionType;
|
|
|
$this->apiParas["recognition_type"] = $recognitionType;
|
|
|
}
|
|
|
|
|
|
public function getRecognitionType()
|
|
|
{
|
|
|
return $this->recognitionType;
|
|
|
}
|
|
|
|
|
|
public function getApiMethodName()
|
|
|
{
|
|
|
return "alipay.pass.file.add";
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
}
|
|
|
|
|
|
}
|