* @version : HUOSDK 8.0 */ namespace huo\model\game; use huo\model\common\CommonModel; class GameclassifyModel extends CommonModel { const STATUS_DISABLE = 1; const STATUS_ENABLE = 2; protected $name = 'game_classify'; public function getIdNames() { return $this->where('status', '=', self::STATUS_ENABLE)->column(['id', 'name']); } }