23 lines
489 B
PHP
23 lines
489 B
PHP
<?php
|
|
|
|
namespace App\Services\Admin;
|
|
|
|
use App\Models\ConstFlow;
|
|
use Slowlyo\OwlAdmin\Services\AdminService;
|
|
use App\Filters\Admin\ConstFlowFilter;
|
|
|
|
/**
|
|
* 费用明细
|
|
*
|
|
* @method ConstFlow getModel()
|
|
* @method ConstFlow|\Illuminate\Database\Query\Builder query()
|
|
*/
|
|
class ConstFlowService extends BaseService
|
|
{
|
|
protected string $modelName = ConstFlow::class;
|
|
|
|
protected string $modelFilterName = ConstFlowFilter::class;
|
|
|
|
protected array $withRelationships = ['oldman'];
|
|
}
|