ArticleContentRepository.php 370 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020-04-20
  7. *
  8. *
  9. */
  10. namespace app\common\repositories\article;
  11. use app\common\dao\article\ArticleContentDao;
  12. use app\common\repositories\BaseRepository;
  13. class ArticleContentRepository extends BaseRepository
  14. {
  15. public function __construct(ArticleContentDao $dao)
  16. {
  17. $this->dao = $dao;
  18. }
  19. }