🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
>[danger] 模型定义 + 继承 `\think\Model`类 ```php <?php namespace app\model; use think\Model; class User extends Model { } ``` + 不想写 `use` 也可以这样写 ```php <?php namespace app\model; class User extends \think\Model { } ``` >[danger] 命令行快速生成模型类(强烈推荐,又快还不会错逼格又略高,为什么不用) + 在框架根目录执行命令 + 要注意的是模型会自动对应表,如果要指定模型对应的表需要在模型中加 `protected $table = '表名'` ``` // 单应用 php think make:model User // 多应用 php think make:model admin@User // 多级目录模型 php think make:model admin@user/Profile ```