Files
midi-php/extend/Yzh/Model/Invoice/ApplyInvoiceResponseData.php

61 lines
1.0 KiB
PHP
Raw Normal View History

2025-08-13 10:43:56 +08:00
<?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;
}
}