| 12345678910111213141516171819202122232425262728 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-present http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 小夏 < 449134904@qq.com>
- // +----------------------------------------------------------------------
- namespace app\admin\model;
- use think\Model;
- class ThemeFileModel extends Model
- {
- /**
- * 模型名称
- * @var string
- */
- protected $name = 'theme_file';
- protected $type = [
- 'more' => 'array',
- 'config_more' => 'array',
- 'draft_more' => 'array'
- ];
- }
|