<?php namespace App\Http\Dao; use App\Models\ChannelConfig; class ChannelConfigDao extends ChannelConfig { /** * 获取单条记录 * @param array $where * @return mixed */ public function getFirstRecord(array $where) { return self::where($where) ->first(); } }