You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
182
extend/alipay/aop/request/AlipayMicropayOrderFreezeRequest.php
Executable file
182
extend/alipay/aop/request/AlipayMicropayOrderFreezeRequest.php
Executable file
@ -0,0 +1,182 @@
|
||||
<?php
|
||||
/**
|
||||
* ALIPAY API: alipay.micropay.order.freeze request
|
||||
*
|
||||
* @author auto create
|
||||
* @since 1.0, 2016-06-06 17:49:00
|
||||
*/
|
||||
class AlipayMicropayOrderFreezeRequest
|
||||
{
|
||||
/**
|
||||
* 需要冻结金额,[0.01,2000],必须是正数,最多只能保留小数点两位,单位是元
|
||||
**/
|
||||
private $amount;
|
||||
|
||||
/**
|
||||
* 冻结资金的到期时间,超过此日期,冻结金会自动解冻,时间要求是:[当前时间+24h,订购时间-8h] .
|
||||
**/
|
||||
private $expireTime;
|
||||
|
||||
/**
|
||||
* 冻结备注,maxLength=40
|
||||
**/
|
||||
private $memo;
|
||||
|
||||
/**
|
||||
* 商户订单号,只能由字母和数字组成,最大长度32.此外部订单号与支付宝的冻结订单号对应,注意 应用id和订购者id和外部订单号必须保证唯一性。
|
||||
**/
|
||||
private $merchantOrderNo;
|
||||
|
||||
/**
|
||||
* 在解冻转账的时候的支付方式: NO_CONFIRM:不需要付款确认,调用接口直接扣款 PAY_PASSWORD: 在转账需要付款方用支付密码确认,才可以转账成功
|
||||
**/
|
||||
private $payConfirm;
|
||||
|
||||
private $apiParas = array();
|
||||
private $terminalType;
|
||||
private $terminalInfo;
|
||||
private $prodCode;
|
||||
private $apiVersion="1.0";
|
||||
private $notifyUrl;
|
||||
private $returnUrl;
|
||||
private $needEncrypt=false;
|
||||
|
||||
|
||||
public function setAmount($amount)
|
||||
{
|
||||
$this->amount = $amount;
|
||||
$this->apiParas["amount"] = $amount;
|
||||
}
|
||||
|
||||
public function getAmount()
|
||||
{
|
||||
return $this->amount;
|
||||
}
|
||||
|
||||
public function setExpireTime($expireTime)
|
||||
{
|
||||
$this->expireTime = $expireTime;
|
||||
$this->apiParas["expire_time"] = $expireTime;
|
||||
}
|
||||
|
||||
public function getExpireTime()
|
||||
{
|
||||
return $this->expireTime;
|
||||
}
|
||||
|
||||
public function setMemo($memo)
|
||||
{
|
||||
$this->memo = $memo;
|
||||
$this->apiParas["memo"] = $memo;
|
||||
}
|
||||
|
||||
public function getMemo()
|
||||
{
|
||||
return $this->memo;
|
||||
}
|
||||
|
||||
public function setMerchantOrderNo($merchantOrderNo)
|
||||
{
|
||||
$this->merchantOrderNo = $merchantOrderNo;
|
||||
$this->apiParas["merchant_order_no"] = $merchantOrderNo;
|
||||
}
|
||||
|
||||
public function getMerchantOrderNo()
|
||||
{
|
||||
return $this->merchantOrderNo;
|
||||
}
|
||||
|
||||
public function setPayConfirm($payConfirm)
|
||||
{
|
||||
$this->payConfirm = $payConfirm;
|
||||
$this->apiParas["pay_confirm"] = $payConfirm;
|
||||
}
|
||||
|
||||
public function getPayConfirm()
|
||||
{
|
||||
return $this->payConfirm;
|
||||
}
|
||||
|
||||
public function getApiMethodName()
|
||||
{
|
||||
return "alipay.micropay.order.freeze";
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user