代码初始化
This commit is contained in:
59
extend/Yzh/Model/Invoice/GoodsServicesName.php
Normal file
59
extend/Yzh/Model/Invoice/GoodsServicesName.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
namespace Yzh\Model\Invoice;
|
||||
|
||||
use Yzh\Model\BaseModel;
|
||||
|
||||
/**
|
||||
* 系统支持的货物或应税劳务、服务名称
|
||||
* Class GoodsServicesName
|
||||
*/
|
||||
class GoodsServicesName extends BaseModel
|
||||
{
|
||||
/**
|
||||
* 货物或应税劳务、服务名称
|
||||
* @var string
|
||||
*/
|
||||
protected $item;
|
||||
/**
|
||||
* 是否为默认值
|
||||
* @var bool
|
||||
*/
|
||||
protected $default;
|
||||
|
||||
/**
|
||||
* 货物或应税劳务、服务名称
|
||||
* @var string $item
|
||||
*/
|
||||
public function setItem($item)
|
||||
{
|
||||
$this->item = $item;
|
||||
}
|
||||
|
||||
/**
|
||||
* 货物或应税劳务、服务名称
|
||||
* @return string
|
||||
*/
|
||||
public function getItem()
|
||||
{
|
||||
return $this->item;
|
||||
}
|
||||
|
||||
/**
|
||||
* 是否为默认值
|
||||
* @var bool $default
|
||||
*/
|
||||
public function setDefault($default)
|
||||
{
|
||||
$this->default = $default;
|
||||
}
|
||||
|
||||
/**
|
||||
* 是否为默认值
|
||||
* @return bool
|
||||
*/
|
||||
public function getDefault()
|
||||
{
|
||||
return $this->default;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user