| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace app\common\dao\user;
- use app\common\dao\BaseDao;
- use app\common\enum\user\UserSignScoreEnum;
- use app\common\model\BaseModel;
- use app\common\model\user\UserSignScore;
- use app\entity\CommonEntity;
- use app\entity\data\user\UserSignScoreEntity;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- class UserSignScoreDao extends BaseDao
- {
- /**
- * @return BaseModel
- */
- protected function getModel(): string
- {
- return UserSignScore::class;
- }
- /**
- * @param array $idList
- * @return CommonEntity[]
- */
- public function getUserSignScoreEntityListByIdList(array $idList): array
- {
- $entityList = [];
- try {
- /** @var UserSignScore $model */
- $model = $this->getModel();
- $dataRes = $model::getDB()
- ->whereIn('id', $idList)
- ->select()
- ->toArray();
- if (!empty($dataRes)) {
- $entityList = array_map(function ($data) {
- return UserSignScoreEntity::newInstance($data);
- }, $dataRes);
- }
- } catch (\Exception $e) {
- }
- return $entityList;
- }
- /**
- * @param string $orderType
- * @param array $orderIdList
- * @return UserSignScoreEntity[]
- */
- public function getUserSignScoreEntityListByOrderIdListAndPending(string $orderType, array $orderIdList): array
- {
- $entityList = [];
- try {
- $dataList = UserSignScore::getDB()
- ->where('order_type', '=', $orderType)
- ->whereIn('order_id', $orderIdList)
- ->where('status', '=', UserSignScoreEnum::STATUS['Pending']['code'])
- ->select()
- ->toArray();
- if (!empty($dataList)) {
- $entityList = array_map(function ($data) {
- return UserSignScoreEntity::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 [];
- }
- }
- }
|