| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020-04-20
- *
- *
- */
- 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;
- }
- }
|