1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Modules\Book\Services;
- use App\Modules\Book\Models\BookSearchStat;
- class BookSearchStatService
- {
-
- public static function create($uid,$openid,$type,$content){
- $type = strtoupper($type);
- try{
- BookSearchStat::create(compact('uid','openid','type','content'));
- }catch (\Exception $e){}
- }
- }
|