1234567891011121314151617 |
- <?php
- namespace App\Services;
- use App\Models\WalletWithdrawRecord;
- use Slowlyo\OwlAdmin\Services\AdminService;
- /**
- * 钱包提现记录
- *
- * @method WalletWithdrawRecord getModel()
- * @method WalletWithdrawRecord|\Illuminate\Database\Query\Builder query()
- */
- class WalletWithdrawRecordService extends AdminService
- {
- protected string $modelName = WalletWithdrawRecord::class;
- }
|