| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Models;
- /**
- * 文章分类管理-模型
- * @author laravel开发员
- * @since 2020/11/11
- * @package App\Models
- */
- class ArticleCategoryModel extends BaseModel
- {
- // 设置数据表
- protected $table = 'article_cates';
- // 设置可填充字段
- protected $fillable = [
- 'name',
- 'icon',
- 'type',
- 'pid',
- 'sort',
- 'description',
- 'status',
- 'create_time',
- 'update_time',
- 'mark'
- ];
- }
|