getModel()::getDb()->where($this->getPk(), $id)->inc($filed, $inc)->update(); } public function countDec(int $id, string $filed, int $dec = 1) { try{ return $this->getModel()::getDb()->where($this->getPk(), $id)->dec($filed, $dec)->update(); }catch (\Exception $exception) { } } }