// +---------------------------------------------------------------------- namespace app\wap\model\live; /** * 直播间礼物 */ use basic\ModelBasic; use traits\ModelTrait; class LiveGift extends ModelBasic { use ModelTrait; /**礼物列表 * @return array * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public static function liveGiftList() { $data=self::where('is_show',1)->order('sort ASC')->select(); $data = count($data) ? $data->toArray() : []; foreach ($data as &$item) { $item['live_gift_num'] = json_decode($item['live_gift_num']); } return $data; } /** * 单个礼物信息 */ public static function liveGiftOne($id) { $gift=self::where('is_show',1)->where('id',$id)->find(); if($gift) return $gift; else return []; } }