<?php

namespace App\Modules\Order\Models;

use Illuminate\Database\Eloquent\Model;

class ChannelOrderStatistic extends Model
{
    protected $table = 'channel_order_statistic';

    protected $fillable = [
        'channel_id',
        'amount',
        'created_at',
        'updated_at',
    ];
}