| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 | 
							- <?php
 
- /**
 
-  * ALIPAY API: alipay.acquire.createandpay request
 
-  *
 
-  * @author auto create
 
-  * @since 1.0, 2019-07-18 14:08:22
 
-  */
 
- class AlipayAcquireCreateandpayRequest
 
- {
 
- 	/** 
 
- 	 * 证书签名
 
- 	 **/
 
- 	private $alipayCaRequest;
 
- 	
 
- 	/** 
 
- 	 * 对一笔交易的具体描述信息。如果是多种商品,请将商品描述字符串累加传给body。
 
- 	 **/
 
- 	private $body;
 
- 	
 
- 	/** 
 
- 	 * 买家支付宝账号,可以为email或者手机号。
 
- 	 **/
 
- 	private $buyerEmail;
 
- 	
 
- 	/** 
 
- 	 * 买家支付宝账号对应的支付宝唯一用户号。
 
- 以2088开头的纯16位数字。
 
- 	 **/
 
- 	private $buyerId;
 
- 	
 
- 	/** 
 
- 	 * 描述多渠道收单的渠道明细信息,json格式,具体请参见“4.5 渠道明细说明”。
 
- 	 **/
 
- 	private $channelParameters;
 
- 	
 
- 	/** 
 
- 	 * 订单金额币种。
 
- 目前只支持传入156(人民币)。
 
- 如果为空,则默认设置为156。
 
- 	 **/
 
- 	private $currency;
 
- 	
 
- 	/** 
 
- 	 * 动态ID。
 
- 	 **/
 
- 	private $dynamicId;
 
- 	
 
- 	/** 
 
- 	 * 动态ID类型:
 
- 􀁺
 
- soundwave:声波
 
- 􀁺
 
- qrcode:二维码
 
- 􀁺
 
- barcode:条码
 
- 􀁺
 
- wave_code:声波,等同soundwave
 
- 􀁺
 
- qr_code:二维码,等同qrcode
 
- 􀁺
 
- bar_code:条码,等同barcode
 
- 建议取值wave_code、qr_code、bar_code。
 
- 	 **/
 
- 	private $dynamicIdType;
 
- 	
 
- 	/** 
 
- 	 * 用于商户的特定业务信息的传递,只有商户与支付宝约定了传递此参数且约定了参数含义,此参数才有效。
 
- 比如可传递声波支付场景下的门店ID等信息,以json格式传输,具体请参见“4.7 业务扩展参数说明”。
 
- 	 **/
 
- 	private $extendParams;
 
- 	
 
- 	/** 
 
- 	 * xml或json
 
- 	 **/
 
- 	private $formatType;
 
- 	
 
- 	/** 
 
- 	 * 描述商品明细信息,json格式,具体请参见“4.3 商品明细说明”。
 
- 	 **/
 
- 	private $goodsDetail;
 
- 	
 
- 	/** 
 
- 	 * 设置未付款交易的超时时间,一旦超时,该笔交易就会自动被关闭。
 
- 取值范围:1m~15d。
 
- m-分钟,h-小时,d-天,1c-当天(无论交易何时创建,都在0点关闭)。
 
- 该参数数值不接受小数点,如1.5h,可转换为90m。
 
- 该功能需要联系支付宝配置关闭时间。
 
- 	 **/
 
- 	private $itBPay;
 
- 	
 
- 	/** 
 
- 	 * 描述预付卡相关的明细信息,json格式,具体请参见“4.8 预付卡明细参数说明”。
 
- 	 **/
 
- 	private $mcardParameters;
 
- 	
 
- 	/** 
 
- 	 * 卖家的操作员ID。
 
- 	 **/
 
- 	private $operatorId;
 
- 	
 
- 	/** 
 
- 	 * 操作员的类型:
 
- 􀁺
 
- 0:支付宝操作员
 
- 􀁺
 
- 1:商户的操作员
 
- 如果传入其它值或者为空,则默认设置为1。
 
- 	 **/
 
- 	private $operatorType;
 
- 	
 
- 	/** 
 
- 	 * 支付宝合作商户网站唯一订单号。
 
- 	 **/
 
- 	private $outTradeNo;
 
- 	
 
- 	/** 
 
- 	 * 订单中商品的单价。
 
- 如果请求时传入本参数,则必须满足total_fee=price×quantity的条件。
 
- 	 **/
 
- 	private $price;
 
- 	
 
- 	/** 
 
- 	 * 订单中商品的数量。
 
- 如果请求时传入本参数,则必须满足total_fee=price×quantity的条件。
 
- 	 **/
 
- 	private $quantity;
 
- 	
 
- 	/** 
 
- 	 * 业务关联ID集合,用于放置商户的订单号、支付流水号等信息,json格式,具体请参见“4.6 业务关联ID集合说明”。
 
- 	 **/
 
- 	private $refIds;
 
- 	
 
- 	/** 
 
- 	 * 描述分账明细信息,json格式,具体请参见“4.4 分账明细说明”。
 
- 	 **/
 
- 	private $royaltyParameters;
 
- 	
 
- 	/** 
 
- 	 * 卖家的分账类型,目前只支持传入ROYALTY(普通分账类型)。
 
- 	 **/
 
- 	private $royaltyType;
 
- 	
 
- 	/** 
 
- 	 * 卖家支付宝账号,可以为email或者手机号。
 
- 如果seller_id不为空,则以seller_id的值作为卖家账号,忽略本参数。
 
- 	 **/
 
- 	private $sellerEmail;
 
- 	
 
- 	/** 
 
- 	 * 卖家支付宝账号对应的支付宝唯一用户号。
 
- 以2088开头的纯16位数字。
 
- 如果和seller_email同时为空,则本参数默认填充partner的值。
 
- 	 **/
 
- 	private $sellerId;
 
- 	
 
- 	/** 
 
- 	 * 收银台页面上,商品展示的超链接。
 
- 	 **/
 
- 	private $showUrl;
 
- 	
 
- 	/** 
 
- 	 * 商品的标题/交易标题/订单标题/订单关键字等。
 
- 该参数最长为128个汉字。
 
- 	 **/
 
- 	private $subject;
 
- 	
 
- 	/** 
 
- 	 * 该笔订单的资金总额,取值范围[0.01,100000000],精确到小数点后2位。
 
- 	 **/
 
- 	private $totalFee;
 
- 	private $apiParas = array();
 
- 	private $terminalType;
 
- 	private $terminalInfo;
 
- 	private $prodCode;
 
- 	private $apiVersion="1.0";
 
- 	private $notifyUrl;
 
- 	private $returnUrl;
 
-     private $needEncrypt=false;
 
- 	
 
- 	public function setAlipayCaRequest($alipayCaRequest)
 
- 	{
 
- 		$this->alipayCaRequest = $alipayCaRequest;
 
- 		$this->apiParas["alipay_ca_request"] = $alipayCaRequest;
 
- 	}
 
- 	public function getAlipayCaRequest()
 
- 	{
 
- 		return $this->alipayCaRequest;
 
- 	}
 
- 	public function setBody($body)
 
- 	{
 
- 		$this->body = $body;
 
- 		$this->apiParas["body"] = $body;
 
- 	}
 
- 	public function getBody()
 
- 	{
 
- 		return $this->body;
 
- 	}
 
- 	public function setBuyerEmail($buyerEmail)
 
- 	{
 
- 		$this->buyerEmail = $buyerEmail;
 
- 		$this->apiParas["buyer_email"] = $buyerEmail;
 
- 	}
 
- 	public function getBuyerEmail()
 
- 	{
 
- 		return $this->buyerEmail;
 
- 	}
 
- 	public function setBuyerId($buyerId)
 
- 	{
 
- 		$this->buyerId = $buyerId;
 
- 		$this->apiParas["buyer_id"] = $buyerId;
 
- 	}
 
- 	public function getBuyerId()
 
- 	{
 
- 		return $this->buyerId;
 
- 	}
 
- 	public function setChannelParameters($channelParameters)
 
- 	{
 
- 		$this->channelParameters = $channelParameters;
 
- 		$this->apiParas["channel_parameters"] = $channelParameters;
 
- 	}
 
- 	public function getChannelParameters()
 
- 	{
 
- 		return $this->channelParameters;
 
- 	}
 
- 	public function setCurrency($currency)
 
- 	{
 
- 		$this->currency = $currency;
 
- 		$this->apiParas["currency"] = $currency;
 
- 	}
 
- 	public function getCurrency()
 
- 	{
 
- 		return $this->currency;
 
- 	}
 
- 	public function setDynamicId($dynamicId)
 
- 	{
 
- 		$this->dynamicId = $dynamicId;
 
- 		$this->apiParas["dynamic_id"] = $dynamicId;
 
- 	}
 
- 	public function getDynamicId()
 
- 	{
 
- 		return $this->dynamicId;
 
- 	}
 
- 	public function setDynamicIdType($dynamicIdType)
 
- 	{
 
- 		$this->dynamicIdType = $dynamicIdType;
 
- 		$this->apiParas["dynamic_id_type"] = $dynamicIdType;
 
- 	}
 
- 	public function getDynamicIdType()
 
- 	{
 
- 		return $this->dynamicIdType;
 
- 	}
 
- 	public function setExtendParams($extendParams)
 
- 	{
 
- 		$this->extendParams = $extendParams;
 
- 		$this->apiParas["extend_params"] = $extendParams;
 
- 	}
 
- 	public function getExtendParams()
 
- 	{
 
- 		return $this->extendParams;
 
- 	}
 
- 	public function setFormatType($formatType)
 
- 	{
 
- 		$this->formatType = $formatType;
 
- 		$this->apiParas["format_type"] = $formatType;
 
- 	}
 
- 	public function getFormatType()
 
- 	{
 
- 		return $this->formatType;
 
- 	}
 
- 	public function setGoodsDetail($goodsDetail)
 
- 	{
 
- 		$this->goodsDetail = $goodsDetail;
 
- 		$this->apiParas["goods_detail"] = $goodsDetail;
 
- 	}
 
- 	public function getGoodsDetail()
 
- 	{
 
- 		return $this->goodsDetail;
 
- 	}
 
- 	public function setItBPay($itBPay)
 
- 	{
 
- 		$this->itBPay = $itBPay;
 
- 		$this->apiParas["it_b_pay"] = $itBPay;
 
- 	}
 
- 	public function getItBPay()
 
- 	{
 
- 		return $this->itBPay;
 
- 	}
 
- 	public function setMcardParameters($mcardParameters)
 
- 	{
 
- 		$this->mcardParameters = $mcardParameters;
 
- 		$this->apiParas["mcard_parameters"] = $mcardParameters;
 
- 	}
 
- 	public function getMcardParameters()
 
- 	{
 
- 		return $this->mcardParameters;
 
- 	}
 
- 	public function setOperatorId($operatorId)
 
- 	{
 
- 		$this->operatorId = $operatorId;
 
- 		$this->apiParas["operator_id"] = $operatorId;
 
- 	}
 
- 	public function getOperatorId()
 
- 	{
 
- 		return $this->operatorId;
 
- 	}
 
- 	public function setOperatorType($operatorType)
 
- 	{
 
- 		$this->operatorType = $operatorType;
 
- 		$this->apiParas["operator_type"] = $operatorType;
 
- 	}
 
- 	public function getOperatorType()
 
- 	{
 
- 		return $this->operatorType;
 
- 	}
 
- 	public function setOutTradeNo($outTradeNo)
 
- 	{
 
- 		$this->outTradeNo = $outTradeNo;
 
- 		$this->apiParas["out_trade_no"] = $outTradeNo;
 
- 	}
 
- 	public function getOutTradeNo()
 
- 	{
 
- 		return $this->outTradeNo;
 
- 	}
 
- 	public function setPrice($price)
 
- 	{
 
- 		$this->price = $price;
 
- 		$this->apiParas["price"] = $price;
 
- 	}
 
- 	public function getPrice()
 
- 	{
 
- 		return $this->price;
 
- 	}
 
- 	public function setQuantity($quantity)
 
- 	{
 
- 		$this->quantity = $quantity;
 
- 		$this->apiParas["quantity"] = $quantity;
 
- 	}
 
- 	public function getQuantity()
 
- 	{
 
- 		return $this->quantity;
 
- 	}
 
- 	public function setRefIds($refIds)
 
- 	{
 
- 		$this->refIds = $refIds;
 
- 		$this->apiParas["ref_ids"] = $refIds;
 
- 	}
 
- 	public function getRefIds()
 
- 	{
 
- 		return $this->refIds;
 
- 	}
 
- 	public function setRoyaltyParameters($royaltyParameters)
 
- 	{
 
- 		$this->royaltyParameters = $royaltyParameters;
 
- 		$this->apiParas["royalty_parameters"] = $royaltyParameters;
 
- 	}
 
- 	public function getRoyaltyParameters()
 
- 	{
 
- 		return $this->royaltyParameters;
 
- 	}
 
- 	public function setRoyaltyType($royaltyType)
 
- 	{
 
- 		$this->royaltyType = $royaltyType;
 
- 		$this->apiParas["royalty_type"] = $royaltyType;
 
- 	}
 
- 	public function getRoyaltyType()
 
- 	{
 
- 		return $this->royaltyType;
 
- 	}
 
- 	public function setSellerEmail($sellerEmail)
 
- 	{
 
- 		$this->sellerEmail = $sellerEmail;
 
- 		$this->apiParas["seller_email"] = $sellerEmail;
 
- 	}
 
- 	public function getSellerEmail()
 
- 	{
 
- 		return $this->sellerEmail;
 
- 	}
 
- 	public function setSellerId($sellerId)
 
- 	{
 
- 		$this->sellerId = $sellerId;
 
- 		$this->apiParas["seller_id"] = $sellerId;
 
- 	}
 
- 	public function getSellerId()
 
- 	{
 
- 		return $this->sellerId;
 
- 	}
 
- 	public function setShowUrl($showUrl)
 
- 	{
 
- 		$this->showUrl = $showUrl;
 
- 		$this->apiParas["show_url"] = $showUrl;
 
- 	}
 
- 	public function getShowUrl()
 
- 	{
 
- 		return $this->showUrl;
 
- 	}
 
- 	public function setSubject($subject)
 
- 	{
 
- 		$this->subject = $subject;
 
- 		$this->apiParas["subject"] = $subject;
 
- 	}
 
- 	public function getSubject()
 
- 	{
 
- 		return $this->subject;
 
- 	}
 
- 	public function setTotalFee($totalFee)
 
- 	{
 
- 		$this->totalFee = $totalFee;
 
- 		$this->apiParas["total_fee"] = $totalFee;
 
- 	}
 
- 	public function getTotalFee()
 
- 	{
 
- 		return $this->totalFee;
 
- 	}
 
- 	public function getApiMethodName()
 
- 	{
 
- 		return "alipay.acquire.createandpay";
 
- 	}
 
- 	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;
 
-   }
 
- }
 
 
  |