// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\dao\wechat; use think\model; use app\dao\BaseDao; use app\model\wechat\WechatQrcode; /** * * Class WechatQrcodeDao * @package app\dao\wechat */ class WechatQrcodeDao extends BaseDao { /** * @return string */ protected function setModel(): string { return WechatQrcode::class; } /** * 获取列表 * @param array $where * @param int $page * @param int $limit * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getList(array $where, int $page = 0, int $limit = 0) { return $this->search($where)->with(['user', 'record' => function ($query) { $query->where('is_follow', 1)->whereDay('add_time', 'yesterday')->field('qid,count(distinct uid) as number'); }])->when($page && $limit, function ($query) use ($page, $limit) { $query->page($page, $limit); })->order('id desc')->select()->toArray(); } /** * 更新次数 * @param $id * @param $isFollow */ public function upFollowAndScan($id, $isFollow) { $this->getModel()->where('id', $id)->inc('scan')->when($isFollow, function ($query) { $query->inc('follow'); })->update(); } }