1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace huoIdentify\model;
- class GameModel extends \huo\model\game\GameModel {
-
- public function identify() {
- return $this->hasOne('\huoIdentify\model\IdentifyGameModel', 'app_id', 'id');
- }
-
- public function getClassifyById($app_id = 0) {
- $_data = $this->getInfoById($app_id);
- return get_val($_data, 'classify', '');
- }
- }
|