<?php namespace App\Modules\Promotion\Models; use Illuminate\Database\Eloquent\Model; class TempTitleImageStatistic extends Model { protected $table = 'temp_title_image_statistics'; protected $fillable = [ 'id', 'title_id', 'image_id', 'send_uv', 'click_uv', 'send_num', 'click_num', 'calculate_time', 'created_at', 'updated_at' ]; }