mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-18 07:42:55 +00:00
17 lines
238 B
PHP
17 lines
238 B
PHP
<?php
|
|
|
|
namespace app\models\article;
|
|
|
|
use crmeb\traits\ModelTrait;
|
|
use crmeb\basic\BaseModel;
|
|
|
|
|
|
/**
|
|
* 文章详情
|
|
* Class ArticleCategory
|
|
* @package app\models\article
|
|
*/
|
|
class ArticleContent extends BaseModel
|
|
{
|
|
use ModelTrait;
|
|
} |