BookSearchStat.php 270 B

1234567891011121314
  1. <?php
  2. namespace App\Modules\Book\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class BookSearchStat extends Model
  5. {
  6. protected $connection = 'api_mysql';
  7. protected $table = 'book_search_stats';
  8. protected $fillable = ['uid','openid','type','content'];
  9. }