## 定义一个User模型类:
~~~
namespace app\index\model;
use think\Model;
class User extends Model
{
}
~~~
## 命名:
模型会自动对应数据表,模型类的命名规则是除去表前缀的数据表名称,采用驼峰法命名,并且首字母大写,例如:
~~~
| 模型名 | 约定对应数据表(假设数据库的前缀定义是 think_) |
| User | think_user |
| UserType | think_user_type |
~~~