12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- 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;
- }
- }
- ?>
|