55 lines
1.3 KiB
PHP
55 lines
1.3 KiB
PHP
<?php
|
||
/* *
|
||
* 功能:支付宝手机网站alipay.data.dataservice.bill.downloadurl.query (查询对账单下载地址)接口业务参数封装
|
||
* 版本:2.0
|
||
* 修改日期:2016-11-01
|
||
* 说明:
|
||
* 以下代码只是为了方便商户测试而提供的样例代码,商户可以根据自己网站的需要,按照技术文档编写,并非一定要使用该代码。
|
||
*/
|
||
|
||
|
||
class AlipayDataDataserviceBillDownloadurlQueryContentBuilder
|
||
{
|
||
|
||
// 账单类型
|
||
private $billType;
|
||
|
||
// 账单时间
|
||
private $billDate;
|
||
|
||
private $bizContentarr = array();
|
||
|
||
private $bizContent = NULL;
|
||
|
||
public function getBizContent()
|
||
{
|
||
if(!empty($this->bizContentarr)){
|
||
$this->bizContent = json_encode($this->bizContentarr,JSON_UNESCAPED_UNICODE);
|
||
}
|
||
return $this->bizContent;
|
||
}
|
||
|
||
public function getBillType()
|
||
{
|
||
return $this->billType;
|
||
}
|
||
|
||
public function setBillType($billType)
|
||
{
|
||
$this->billType = $billType;
|
||
$this->bizContentarr['bill_type'] = $billType;
|
||
}
|
||
|
||
public function getBillDate()
|
||
{
|
||
return $this->billDate;
|
||
}
|
||
|
||
public function setBillDate($billDate)
|
||
{
|
||
$this->billDate = $billDate;
|
||
$this->bizContentarr['bill_date'] = $billDate;
|
||
}
|
||
}
|
||
|
||
?>
|