123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\wap\model\live;
- use basic\ModelBasic;
- use traits\ModelTrait;
- /**直播间礼物
- * Class LiveGift
- * @package app\wap\model\live
- */
- 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 DESC,id DESC')->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 [];
- }
- }
|