| 12345678910111213141516171819202122232425 |
- <?php
- // +----------------------------------------------------------------------
- // | RXThinkCMF框架 [ RXThinkCMF ]
- // +----------------------------------------------------------------------
- // | 版权所有 2017~2021 南京RXThinkCMF研发中心
- // +----------------------------------------------------------------------
- // | 官方网站: http://www.rxthink.cn
- // +----------------------------------------------------------------------
- // | Author: 牧羊人 <1175401194@qq.com>
- // +----------------------------------------------------------------------
- namespace App\Models;
- /**
- * 字典-模型
- * @author 牧羊人
- * @since 2020/11/11
- * Class DictModel
- * @package App\Models
- */
- class DictModel extends BaseModel
- {
- // 设置数据表
- protected $table = 'dict';
- }
|