仓库初始化

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,60 @@
<?php
namespace Yzh\Model\Invoice;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 发票开具申请返回
* Class ApplyInvoiceResponseData
*/
class ApplyInvoiceResponseData extends BaseModel implements ResponseDataInterface
{
/**
* 发票申请单 ID
* @var string
*/
protected $application_id;
/**
* 发票张数
* @var int64
*/
protected $count;
/**
* 发票申请单 ID
* @var string $application_id
*/
public function setApplicationId($application_id)
{
$this->application_id = $application_id;
}
/**
* 发票申请单 ID
* @return string
*/
public function getApplicationId()
{
return $this->application_id;
}
/**
* 发票张数
* @var int64 $count
*/
public function setCount($count)
{
$this->count = $count;
}
/**
* 发票张数
* @return int64
*/
public function getCount()
{
return $this->count;
}
}