where('status',10); }); $query->where('ProductGroupUser.product_group_id',$id); return $query->setOption('field',[])->field('nickname,avatar')->select(); } public function updateStatus(int $groupId) { return $this->getModel()::getDb()->where('group_buying_id',$groupId)->update(['status' => 10]); } public function groupOrderIds($productGroupId) { return ProductGroupUser::getDB()->where('group_buying_id', $productGroupId)->where('order_id', '>', 0)->select(); } }