6
0
Fork 0
jiqu-library-server/app/Models/DealerSalesValueLog.php

27 lines
494 B
PHP

<?php
namespace App\Models;
use App\Enums\DealerSalesValueLogType;
use Illuminate\Database\Eloquent\Model;
class DealerSalesValueLog extends Model
{
protected $attributes = [
'type' => DealerSalesValueLogType::Personal,
];
protected $casts = [
'type' => DealerSalesValueLogType::class,
];
protected $fillable = [
'user_id',
'loggable_type',
'loggable_id',
'type',
'change_sales_value',
'remark',
];
}