| 1234567891011121314151617181920212223 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020-04-20
- *
- *
- */
- namespace app\common\repositories\article;
- use app\common\dao\article\ArticleContentDao;
- use app\common\repositories\BaseRepository;
- class ArticleContentRepository extends BaseRepository
- {
- public function __construct(ArticleContentDao $dao)
- {
- $this->dao = $dao;
- }
- }
|