-
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
4 changed files
with
472 additions
and
0 deletions.
There are no files selected for viewing
118 changes: 118 additions & 0 deletions
118
src/aop/request/AlipaySecurityRiskComplaintFileUploadRequest.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.security.risk.complaint.file.upload request | ||
* | ||
* @author auto create | ||
* @since 1.0, 2024-03-11 15:05:04 | ||
*/ | ||
class AlipaySecurityRiskComplaintFileUploadRequest | ||
{ | ||
/** | ||
* 单图片文件大小请控制在5M以内 | ||
**/ | ||
private $fileContent; | ||
|
||
private $apiParas = array(); | ||
private $terminalType; | ||
private $terminalInfo; | ||
private $prodCode; | ||
private $apiVersion="1.0"; | ||
private $notifyUrl; | ||
private $returnUrl; | ||
private $needEncrypt=false; | ||
|
||
|
||
public function setFileContent($fileContent) | ||
{ | ||
$this->fileContent = $fileContent; | ||
$this->apiParas["file_content"] = $fileContent; | ||
} | ||
|
||
public function getFileContent() | ||
{ | ||
return $this->fileContent; | ||
} | ||
|
||
public function getApiMethodName() | ||
{ | ||
return "alipay.security.risk.complaint.file.upload"; | ||
} | ||
|
||
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/AlipaySecurityRiskComplaintInfoBatchqueryRequest.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.security.risk.complaint.info.batchquery request | ||
* | ||
* @author auto create | ||
* @since 1.0, 2024-07-12 14:27:04 | ||
*/ | ||
class AlipaySecurityRiskComplaintInfoBatchqueryRequest | ||
{ | ||
/** | ||
* 查询消费者投诉列表 | ||
**/ | ||
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.security.risk.complaint.info.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/AlipaySecurityRiskComplaintInfoQueryRequest.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.security.risk.complaint.info.query request | ||
* | ||
* @author auto create | ||
* @since 1.0, 2024-07-11 15:47:04 | ||
*/ | ||
class AlipaySecurityRiskComplaintInfoQueryRequest | ||
{ | ||
/** | ||
* 查询消费者投诉详情 | ||
**/ | ||
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.security.risk.complaint.info.query"; | ||
} | ||
|
||
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.