You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ArticleContent.php 339B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\model\article;
  3. use crmeb\basic\BaseModel;
  4. use crmeb\traits\ModelTrait;
  5. /**
  6. * 文章详情Model
  7. * Class ArticleContent
  8. * @package app\model\article
  9. */
  10. class ArticleContent extends BaseModel
  11. {
  12. use ModelTrait;
  13. /**
  14. * 模型名称
  15. * @var string
  16. */
  17. protected $name = 'article_content';
  18. }