ArticleContentDao.php 403 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020-04-20
  7. *
  8. *
  9. */
  10. namespace app\common\dao\article;
  11. use app\common\dao\BaseDao;
  12. use app\common\model\BaseModel;
  13. class ArticleContentDao extends BaseDao
  14. {
  15. /**
  16. * @return BaseModel
  17. * @author xaboy
  18. * @day 2020-03-30
  19. */
  20. protected function getModel(): string
  21. {
  22. return ArticleContentDao::class;
  23. }
  24. }