VideoStatByCompany.php 324 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class VideoStatByCompany extends Model{
  5. protected $table = 'video_stat_by_company';
  6. protected $fillable = [
  7. 'id','user_id','video_name','video_id','amount','charge_count','charge_user_num','play_count','created_at','updated_at'
  8. ];
  9. }