Files
youlegames/codes/agent/game/api/payment/alipay/wappay/buildermodel/AlipayDataDataserviceBillDownloadurlQueryContentBuilder.php
2026-03-15 01:27:05 +08:00

55 lines
1.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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;
}
}
?>