ArticleContentDao.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\dao\article;
  12. use app\dao\BaseDao;
  13. use app\model\article\ArticleContent;
  14. /**
  15. * 文章详情
  16. * Class ArticleContentDao
  17. * @package app\dao\article
  18. */
  19. class ArticleContentDao extends BaseDao
  20. {
  21. /**
  22. * 设置模型
  23. * @return string
  24. */
  25. protected function setModel(): string
  26. {
  27. return ArticleContent::class;
  28. }
  29. /**
  30. * 根据id删除数据
  31. * @param int $id
  32. * @return bool
  33. * @throws \Exception
  34. */
  35. public function del(int $id)
  36. {
  37. return $this->getModel()->where('nid',$id)->delete();
  38. }
  39. }