用户账变 用户钱包
This commit is contained in:
13
app/Bean/Model/Base/BaseBean.php
Normal file
13
app/Bean/Model/Base/BaseBean.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
namespace App\Bean\Model\Base;
|
||||
|
||||
use EasySwoole\Spl\SplBean;
|
||||
|
||||
abstract class BaseBean extends SplBean
|
||||
{
|
||||
function toArrayNotNull(): array
|
||||
{
|
||||
return $this->toArray(self::FILTER_NOT_NULL);
|
||||
}
|
||||
|
||||
}
|
||||
9
app/Bean/Model/Base/TmplBean.php
Normal file
9
app/Bean/Model/Base/TmplBean.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace App\Bean\Model\Base;
|
||||
|
||||
use App\Bean\Model\Base\BaseBean;
|
||||
|
||||
class TmplBean extends BaseBean
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user