仓库初始化

This commit is contained in:
2025-08-13 10:43:56 +08:00
commit e8f9b46680
5180 changed files with 859303 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<?php
namespace Yzh\Model\Invoice;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 查询发票信息返回
* Class GetInvoiceInformationResponseData
*/
class GetInvoiceInformationResponseData extends BaseModel implements ResponseDataInterface
{
/**
* 发票信息
* @var InformationDataInfo[]
*/
protected $information;
/**
* 发票信息
* @var array $items
*/
public function setInformation($items)
{
$this->information = array();
foreach ($items as $k => $v) {
array_push($this->information, new InformationDataInfo($v));
}
}
/**
* 发票信息
* @return InformationDataInfo[]
*/
public function getInformation()
{
return $this->information;
}
}