where('type', $type)->count(); } public static function getIdNameMapByStatus($int) { return Db::table(self::$table) ->where('status', $int) ->field('id,name') ->select() ->toArray(); } }