ChannelOrderStatisticDate.php 326 B

123456789101112131415161718
  1. <?php
  2. namespace App\Modules\Order\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ChannelOrderStatisticDate extends Model
  5. {
  6. protected $table = 'channel_order_statistic_date';
  7. protected $fillable = [
  8. 'date',
  9. 'channel_id',
  10. 'amount',
  11. 'created_at',
  12. 'updated_at',
  13. ];
  14. }