|
|
@ -7,7 +7,9 @@ |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
namespace EasyAlipay\OpenPlatform\Authorizer\Mini\Model; |
|
|
|
namespace EasyAlipay\OpenPlatform\Authorizer\Mini\Model; |
|
|
|
class VersionAuditContentBuilder |
|
|
|
use EasyAlipay\Kernel\AppRequest; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class VersionAuditContentBuilder extends AppRequest |
|
|
|
{ |
|
|
|
{ |
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var string 小程序版本号 |
|
|
|
* @var string 小程序版本号 |
|
|
@ -25,22 +27,6 @@ class VersionAuditContentBuilder |
|
|
|
* @var array 省市区信息,当区域类型为LOCATION时,不能为空 |
|
|
|
* @var array 省市区信息,当区域类型为LOCATION时,不能为空 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private $serviceRegionInfo; |
|
|
|
private $serviceRegionInfo; |
|
|
|
/** |
|
|
|
|
|
|
|
* @var array 参数数组 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private $bizContentarr = []; |
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @var string 参数字符串 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private $bizContent = NULL; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public function getBizContent() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (!empty($this->bizContentarr)) { |
|
|
|
|
|
|
|
$this->bizContent = json_encode($this->bizContentarr, JSON_UNESCAPED_UNICODE); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return $this->bizContent; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @param $appVersion |
|
|
|
* @param $appVersion |
|
|
@ -48,7 +34,7 @@ class VersionAuditContentBuilder |
|
|
|
public function setAppVersion($appVersion) |
|
|
|
public function setAppVersion($appVersion) |
|
|
|
{ |
|
|
|
{ |
|
|
|
$this->appVersion = $appVersion; |
|
|
|
$this->appVersion = $appVersion; |
|
|
|
$this->bizContentarr['app_version'] = $appVersion; |
|
|
|
$this->apiParas['app_version'] = $appVersion; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -65,7 +51,7 @@ class VersionAuditContentBuilder |
|
|
|
public function setVersionDesc($versionDesc) |
|
|
|
public function setVersionDesc($versionDesc) |
|
|
|
{ |
|
|
|
{ |
|
|
|
$this->versionDesc = $versionDesc; |
|
|
|
$this->versionDesc = $versionDesc; |
|
|
|
$this->bizContentarr['version_desc'] = $versionDesc; |
|
|
|
$this->apiParas['version_desc'] = $versionDesc; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -82,7 +68,7 @@ class VersionAuditContentBuilder |
|
|
|
public function setRegionType($regionType) |
|
|
|
public function setRegionType($regionType) |
|
|
|
{ |
|
|
|
{ |
|
|
|
$this->regionType = $regionType; |
|
|
|
$this->regionType = $regionType; |
|
|
|
$this->bizContentarr['region_type'] = $regionType; |
|
|
|
$this->apiParas['region_type'] = $regionType; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -99,7 +85,7 @@ class VersionAuditContentBuilder |
|
|
|
public function setServiceRegionInfo($serviceRegionInfo) |
|
|
|
public function setServiceRegionInfo($serviceRegionInfo) |
|
|
|
{ |
|
|
|
{ |
|
|
|
$this->serviceRegionInfo = $serviceRegionInfo; |
|
|
|
$this->serviceRegionInfo = $serviceRegionInfo; |
|
|
|
$this->bizContentarr['service_region_info'] = $serviceRegionInfo; |
|
|
|
$this->apiParas['service_region_info'] = $serviceRegionInfo; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -117,7 +103,7 @@ class VersionAuditContentBuilder |
|
|
|
public function setParams($params) |
|
|
|
public function setParams($params) |
|
|
|
{ |
|
|
|
{ |
|
|
|
foreach ($params as $k => $v) { |
|
|
|
foreach ($params as $k => $v) { |
|
|
|
$this->bizContentarr[$k] = $v; |
|
|
|
$this->apiParas[$k] = $v; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |