getModel(); $dataRes = $model::getDB() ->whereIn('id', $idList) ->select() ->toArray(); if (!empty($dataRes)) { $entityList = array_map(function ($data) { return UserPvLogEntity::newInstance($data); }, $dataRes); } } catch (\Exception $e) { } return $entityList; } /** * @param string $orderType * @param array $orderIdList * @return UserPvLogEntity[] */ public function getUserPvLogEntityListByOrderIdListAndPending(string $orderType, array $orderIdList): array { $entityList = []; try { $dataList = UserPvLog::getDB() ->where('order_type', '=', $orderType) ->whereIn('order_id', $orderIdList) ->where('status', '=', UserPvLogEnum::STATUS['PendingConfirmation']['code']) ->select() ->toArray(); if (!empty($dataList)) { $entityList = array_map(function ($data) { return UserPvLogEntity::newInstance($data); }, $dataList); } } catch (DataNotFoundException|ModelNotFoundException|DbException $e) { } return $entityList; } /** * 批量更新 * @param $dataList * @return array */ public function saveAll($dataList): array { try { return $this->getModel()::getInstance()->allowField(array_keys(reset($dataList)))->saveAll($dataList)->toArray(); } catch (\Exception $e) { return []; } } /** * 根据order_id和status查找pv值 */ public function getPVFromStatusOrderId($orderId) { try { return $this::getModel()::getDB()->where('order_id', '=', $orderId)->where('status','=',1)->value('pv'); } catch (\Exception $e) { return []; } } /** * 根据order_id获取pv值(用于备份用户变更记录) */ public function getPvForBackupFromOrderId($orderId) { try { $value = $this::getModel()::getDB() ->where('order_id', '=', $orderId) ->where('status', '=', 1) ->value('pv'); return $value ?: 0; } catch (\Exception $e) { return 0; } } }