WapVisitStat.php 240 B

12345678910111213
  1. <?php
  2. namespace App\Modules\Statistic\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class WapVisitStat extends Model
  5. {
  6. protected $table = 'wap_visit_stats';
  7. protected $fillable = ['day','key','from_type','pv','uv','type'];
  8. }