1234567891011121314 |
- <?php
- namespace App\Modules\Book\Models;
- use Illuminate\Database\Eloquent\Model;
- class BookSearchStat extends Model
- {
- protected $connection = 'api_mysql';
-
- protected $table = 'book_search_stats';
- protected $fillable = ['uid','openid','type','content'];
- }
|