接单员与财务管理

This commit is contained in:
liu
2026-06-17 10:35:13 +08:00
parent 254823e308
commit 8d52e863b9
110 changed files with 6054 additions and 570 deletions
@@ -0,0 +1,33 @@
<?php
namespace Modules\Runner\Models;
use Illuminate\Database\Eloquent\Model;
class RunnerWithdrawalModel extends Model
{
protected $table = 'runner_withdrawals';
protected $fillable = [
'withdraw_no',
'user_id',
'worker_id',
'amount',
'fee',
'channel',
'account_info',
'status',
'remark',
'processed_at',
];
protected $casts = [
'user_id' => 'integer',
'worker_id' => 'integer',
'amount' => 'decimal:2',
'fee' => 'decimal:2',
'account_info' => 'array',
'status' => 'integer',
'processed_at' => 'datetime',
];
}