| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?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;
- use think\facade\Log;
- 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()::getInstance()->allowField(array_keys(reset($dataList)))->saveAll($dataList)->toArray();
- } catch (\Exception $e) {
- return [];
- }
- }
- }
|