where($where)->paginate($limit); }catch(\Exception $e){ throw new ModelException($e->getMessage()); } return dataReturn($this->sucCode,$this->getMsg,$res); } /** * @param array $where * @return array * @throws ModelEmptyException * @throws ModelException */ public function getJobCity(array $where = []): array { try{ $res = $this->where($where)->find(); if(empty($res)){ throw new ModelEmptyException(); } }catch(ModelEmptyException $me){ throw new ModelEmptyException(); }catch(\Exception $e){ throw new ModelException($e->getMessage()); } return dataReturn($this->sucCode,$this->getMsg,$res); } /** * @param $param * @return array * @throws ModelException */ public function addJobCity($param): array { try{ $has = $this->where('seller_id', $param['seller_id'])->where('title',$param['title'])->find(); if (!empty($has)) { return dataReturn(-3, lang('城市名称重复')); } $res = self::create($param); }catch(\Exception $e){ throw new ModelException($e->getMessage()); } return dataReturn($this->sucCode,$this->addMsg,$res->id); } /** * @param array $where * @param array $param * @return array * @throws ModelException */ public function updateJobCity(array $where = [],array $param = []): array { try{ $has = $this->where('title', $param['title'])->where('seller_id', $where['seller_id'])->where('id','<>', $where['id'])->find(); if (!empty($has)) { return dataReturn(-3, lang('城市名称重复')); } $res = self::where($where)->update($param); }catch(\Exception $e){ throw new ModelException($e->getMessage()); } return dataReturn($this->sucCode,$this->updateMsg,$res); } /** * @param $where * @return array * @throws ModelException */ public function softDelJobCity($where): array { try{ $res = $this->where($where)->update($this->delData); }catch(\Exception $e){ throw new ModelException($e->getMessage()); } return dataReturn($this->sucCode,$this->delMsg,$res); } /** * @param $where * @return array * @throws ModelException */ public function delJobCity($where): array { try{ $res = $this->where($where)->delete(); }catch(\Exception $e){ throw new ModelException($e->getMessage()); } return dataReturn($this->sucCode,$this->delMsg,$res); } }