-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
75 changed files
with
9,822 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: alipay.ebpp.invoice.info.send request | ||
* | ||
* @author auto create | ||
* @since 1.0, 2018-01-19 19:38:03 | ||
*/ | ||
class AlipayEbppInvoiceInfoSendRequest | ||
{ | ||
/** | ||
* 发票信息回传接口(新版) | ||
**/ | ||
private $bizContent; | ||
|
||
private $apiParas = array(); | ||
private $terminalType; | ||
private $terminalInfo; | ||
private $prodCode; | ||
private $apiVersion="1.0"; | ||
private $notifyUrl; | ||
private $returnUrl; | ||
private $needEncrypt=false; | ||
|
||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParas["biz_content"] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
|
||
public function getApiMethodName() | ||
{ | ||
return "alipay.ebpp.invoice.info.send"; | ||
} | ||
|
||
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; | ||
} | ||
|
||
} |
118 changes: 118 additions & 0 deletions
118
src/aop/request/AlipayEbppInvoiceMerchantlistEnterApplyRequest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: alipay.ebpp.invoice.merchantlist.enter.apply request | ||
* | ||
* @author auto create | ||
* @since 1.0, 2018-01-19 19:36:06 | ||
*/ | ||
class AlipayEbppInvoiceMerchantlistEnterApplyRequest | ||
{ | ||
/** | ||
* 商户批量入驻申请接口 | ||
**/ | ||
private $bizContent; | ||
|
||
private $apiParas = array(); | ||
private $terminalType; | ||
private $terminalInfo; | ||
private $prodCode; | ||
private $apiVersion="1.0"; | ||
private $notifyUrl; | ||
private $returnUrl; | ||
private $needEncrypt=false; | ||
|
||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParas["biz_content"] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
|
||
public function getApiMethodName() | ||
{ | ||
return "alipay.ebpp.invoice.merchantlist.enter.apply"; | ||
} | ||
|
||
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; | ||
} | ||
|
||
} |
118 changes: 118 additions & 0 deletions
118
src/aop/request/AlipayEbppInvoiceTitleDynamicGetRequest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: alipay.ebpp.invoice.title.dynamic.get request | ||
* | ||
* @author auto create | ||
* @since 1.0, 2018-03-15 20:22:29 | ||
*/ | ||
class AlipayEbppInvoiceTitleDynamicGetRequest | ||
{ | ||
/** | ||
* 根据条形码获取抬头 | ||
**/ | ||
private $bizContent; | ||
|
||
private $apiParas = array(); | ||
private $terminalType; | ||
private $terminalInfo; | ||
private $prodCode; | ||
private $apiVersion="1.0"; | ||
private $notifyUrl; | ||
private $returnUrl; | ||
private $needEncrypt=false; | ||
|
||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParas["biz_content"] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
|
||
public function getApiMethodName() | ||
{ | ||
return "alipay.ebpp.invoice.title.dynamic.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; | ||
} | ||
|
||
} |
Oops, something went wrong.