-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bugs caused by case insensitive.
- Loading branch information
Showing
12 changed files
with
348 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: alipay.open.agent.signstatus.query request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-12 18:40:00 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class AlipayOpenAgentSignstatusQueryRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* isv查询商户某个产品的签约状态 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: alipay.open.app.lingbalingliu.query request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-08-16 12:05:01 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class AlipayOpenAppLingbalingliuQueryRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* yufayanzheng | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: alipay.open.mini.tinyapp.exist.query request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-24 16:05:00 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class AlipayOpenMiniTinyappExistQueryRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 查询是否创建过小程序 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: alipay.security.risk.content.detect request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-30 15:40:00 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class AlipaySecurityRiskContentDetectRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 小程序内容风险检测服务 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: alipay.trade.orderinfo.sync request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-23 11:40:00 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class AlipayTradeOrderinfoSyncRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 支付宝订单信息同步接口 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
aop/Request/KoubeiMarketingCampaignItemMerchantactivityBatchqueryRequest.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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: koubei.marketing.campaign.item.merchantactivity.batchquery request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-06 17:37:37 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class KoubeiMarketingCampaignItemMerchantactivityBatchqueryRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 商户查询商品代金券列表 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
aop/Request/KoubeiMarketingCampaignItemMerchantactivityCloseRequest.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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: koubei.marketing.campaign.item.merchantactivity.close request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-06 17:40:00 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class KoubeiMarketingCampaignItemMerchantactivityCloseRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 商户下架代金券 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
aop/Request/KoubeiMarketingCampaignItemMerchantactivityCreateRequest.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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: koubei.marketing.campaign.item.merchantactivity.create request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-06 17:40:00 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class KoubeiMarketingCampaignItemMerchantactivityCreateRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 商户创建商品代金券 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
aop/Request/KoubeiMarketingCampaignItemMerchantactivityModifyRequest.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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: koubei.marketing.campaign.item.merchantactivity.modify request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-06 17:37:41 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class KoubeiMarketingCampaignItemMerchantactivityModifyRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 商户修改商品代金券 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
aop/Request/KoubeiMarketingCampaignItemMerchantactivityQueryRequest.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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: koubei.marketing.campaign.item.merchantactivity.query request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-07-06 17:37:42 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class KoubeiMarketingCampaignItemMerchantactivityQueryRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 商户查询商品代金券详情 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: koubei.trade.ticket.ticketcode.sync request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-08-29 20:55:00 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class KoubeiTradeTicketTicketcodeSyncRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 口碑凭证码同步 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |
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,29 @@ | ||
<?php | ||
/** | ||
* ALIPAY API: zhima.customer.auth.mutualview.apply request | ||
* | ||
* @author auto create | ||
* | ||
* @since 1.0, 2018-09-03 20:55:00 | ||
*/ | ||
|
||
namespace Alipay\Request; | ||
|
||
class ZhimaCustomerAuthMutualviewApplyRequest extends AbstractAlipayRequest | ||
{ | ||
/** | ||
* 芝麻信用互查申请 | ||
**/ | ||
private $bizContent; | ||
|
||
public function setBizContent($bizContent) | ||
{ | ||
$this->bizContent = $bizContent; | ||
$this->apiParams['biz_content'] = $bizContent; | ||
} | ||
|
||
public function getBizContent() | ||
{ | ||
return $this->bizContent; | ||
} | ||
} |