用户账变 用户钱包

This commit is contained in:
cano
2024-03-10 00:44:58 +08:00
parent 025dab4c2c
commit 6d242ae973
17 changed files with 1617 additions and 16 deletions

View 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);
}
}