| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace app\common\dao\user;
- use app\common\dao\BaseDao;
- use app\common\enum\user\UserPvLogEnum;
- use app\common\model\BaseModel;
- use app\common\model\user\UserPvLog;
- use app\entity\CommonEntity;
- use app\entity\data\user\UserPvLogEntity;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- class UserPvLogDao extends BaseDao
- {
- /**
- * @return BaseModel
- */
- protected function getModel(): string
- {
- return UserPvLog::class;
- }
- /**
- * @param array $idList
- * @return CommonEntity[]
- */
- public function getUserPvLogEntityListByIdList(array $idList): array
- {
- $entityList = [];
- try {
- /** @var UserPvLog $model */
- $model = $this->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()->saveAll($dataList)->toArray();
- } catch (\Exception $e) {
- return [];
- }
- }
- }
|