mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 20:44:19 +00:00
34 lines
639 B
PHP
34 lines
639 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class WePostNotification extends Model
|
|
{
|
|
protected $table = 'wepost_notifications';
|
|
|
|
protected $fillable = [
|
|
'logistics_order_code',
|
|
'execute_time',
|
|
'timezone',
|
|
'status',
|
|
'package_info',
|
|
'client_id',
|
|
'type',
|
|
'timestamp',
|
|
'sign',
|
|
'order_code',
|
|
'biz_action',
|
|
'biz_action_desc',
|
|
'segment_code',
|
|
'is_split_out',
|
|
'package_infos',
|
|
];
|
|
|
|
protected $casts = [
|
|
'package_info' => 'array',
|
|
'execute_time' => 'datetime',
|
|
];
|
|
}
|