-
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
2 changed files
with
236 additions
and
0 deletions.
There are no files selected for viewing
118 changes: 118 additions & 0 deletions
118
src/aop/request/AlipayCommerceComplaintPageBatchqueryRequest.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.commerce.complaint.page.batchquery request | ||
* | ||
* @author auto create | ||
* @since 1.0, 2023-11-10 10:36:13 | ||
*/ | ||
class AlipayCommerceComplaintPageBatchqueryRequest | ||
{ | ||
/** | ||
* 投诉查询 | ||
**/ | ||
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.commerce.complaint.page.batchquery"; | ||
} | ||
|
||
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/AlipayCommerceComplaintReplySubmitRequest.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.commerce.complaint.reply.submit request | ||
* | ||
* @author auto create | ||
* @since 1.0, 2023-11-10 10:36:07 | ||
*/ | ||
class AlipayCommerceComplaintReplySubmitRequest | ||
{ | ||
/** | ||
* 处理投诉 | ||
**/ | ||
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.commerce.complaint.reply.submit"; | ||
} | ||
|
||
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; | ||
} | ||
|
||
} |