| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\v1\model\advert;
- use plugin\saiadmin\basic\BaseNormalModel;
- /**
- * 打包记录模型
- */
- class GamePackLog extends BaseNormalModel
- {
- /**
- * 数据表主键
- * @var string
- */
- protected $pk = 'id';
- /**
- * 数据库表名称
- * @var string
- */
- protected $table = 'game_pack_log';
- /**
- * 数据库连接
- * @var string
- */
- protected $connection = 'db_game_log';
- /**
- * 游戏名 搜索
- */
- public function searchGameNameAttr($query, $value)
- {
- $query->where('game_name', 'like', '%'.$value.'%');
- }
- }
|