123456789101112131415161718192021222324 |
- <?php
- namespace app\common\dao\article;
- use app\common\dao\BaseDao;
- use app\common\model\BaseModel;
- class ArticleContentDao extends BaseDao
- {
- /**
- * @return BaseModel
- * @author xaboy
- * @day 2020-03-30
- */
- protected function getModel(): string
- {
- return ArticleContentDao::class;
- }
- }
|