仓库初始化

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,59 @@
<?php
namespace Yzh\Model\Invoice;
use Yzh\Model\BaseModel;
/**
* 系统支持的开户行及账号
* Class BankNameAccount
*/
class BankNameAccount 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;
}
}