123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\dao\activity\bargain;
- use app\dao\BaseDao;
- use app\model\activity\bargain\StoreBargainUser;
- /**
- *
- * Class StoreBargainUserDao
- * @package app\dao\activity
- */
- class StoreBargainUserDao extends BaseDao
- {
- /**
- * 设置模型
- * @return string
- */
- protected function setModel(): string
- {
- return StoreBargainUser::class;
- }
- /**
- * 获取帮砍数量
- * @param array $where
- * @return array
- */
- public function getAllCount(array $where = [])
- {
- return $this->getModel()->where($where)->group('bargain_id')->column('count(*)', 'bargain_id');
- }
- /**
- * 获取砍价表ID
- * @param int $bargainId $bargainId 砍价商品
- * @param int $bargainUserUid $bargainUserUid 开启砍价用户编号
- * @param int $status $status 砍价状态 1参与中 2 活动结束参与失败 3活动结束参与成功
- * @return mixed
- */
- public function getBargainUserTableId(int $bargainId = 0, int $bargainUserUid = 0)
- {
- return $this->value(['bargain_id' => $bargainId, 'uid' => $bargainUserUid, 'is_del' => 0, 'status' => 1], 'id') ?? 0;
- }
- /**
- * 获取用户砍价列表
- * @param int $bargainUserUid
- * @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 userAll(int $bargainUserUid, int $page, int $limit)
- {
- return $this->search(['uid' => $bargainUserUid, 'is_del' => 0])->with('getBargain')->order('add_time DESC,id DESC')->page($page, $limit)->select()->toArray();
- }
- /**
- * 获取砍价状态
- * @param $bargainId
- * @param $uid
- * @return mixed
- */
- public function getBargainUserStatus($bargainId, $uid)
- {
- return $this->search(['bargain_id' => $bargainId, 'uid' => $uid])->order('add_time DESC')->value('status');
- }
- /**
- * 修改砍价状态
- * @param int $id
- * @param int $status
- * @return \crmeb\basic\BaseModel
- */
- public function updateBargainStatus(int $id, int $status = 3)
- {
- return $this->getModel()->where('id', $id)->where('status', 1)->update(['status' => $status]);
- }
- /**
- * 砍价列表
- * @param $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 bargainUserList($where, $page = 0, $limit = 0)
- {
- return $this->search($where)->with(['getBargain', 'getUser'])
- ->when(isset($where['real_name']) && $where['real_name'] != '', function ($query) use ($where) {
- $query->where('uid', $where['real_name']);
- })->when($page != 0, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order('add_time desc')->select()->toArray();
- }
- }
|