VideoStatByCompany.php 394 B

1234567891011121314151617
  1. <?php
  2. namespace Modules\Statistic\Models;
  3. use Modules\Channel\Models\BaseModel;
  4. class VideoStatByCompany extends BaseModel
  5. {
  6. protected $table = 'video_stat_by_company';
  7. protected $fillable = [
  8. 'id', 'day', 'user_id', 'video_name', 'video_id', 'amount', 'charge_count',
  9. 'charge_user_num', 'play_count', 'is_delete', 'created_at', 'updated_at', 'click_uv',
  10. ];
  11. }