feat(admin): 客服中心工单骨架(模型/迁移/路由/菜单/页面)
This commit is contained in:
31
app/Models/SupportTicket.php
Normal file
31
app/Models/SupportTicket.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SupportTicket extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'scope',
|
||||
'scope_id',
|
||||
'merchant_id',
|
||||
'buyer_id',
|
||||
'order_id',
|
||||
'platform_order_id',
|
||||
'site_subscription_id',
|
||||
'platform_lead_id',
|
||||
'ticket_no',
|
||||
'category',
|
||||
'priority',
|
||||
'status',
|
||||
'subject',
|
||||
'content',
|
||||
'assigned_admin_id',
|
||||
'closed_at',
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'closed_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user