This commit is contained in:
李铭昕 2019-05-22 14:57:08 +08:00
parent 9ef22d06fb
commit a70f14fd28

View File

@ -54,15 +54,15 @@ class User extends Model
## 模型参数
| 参数 | 类型 | 默认值 | 备注 |
|:----------:|:------:|:---------:|:--------------------:|
| connection | string | 'default' | 数据库连接 |
| table | string | | 数据表名称 |
| primaryKey | string | 'id' | 模型主键 |
| keyType | string | 'int' | 主键类型 |
| fillable | array | [] | 允许被批量复制的属性 |
| casts | string | | 数据格式化配置 |
| timestamps | bool | true | 是否自动维护时间戳 |
| 参数 | 类型 | 默认值 | 备注 |
|:----------:|:------:|:-------:|:--------------------:|
| connection | string | default | 数据库连接 |
| table | string | 无 | 数据表名称 |
| primaryKey | string | id | 模型主键 |
| keyType | string | int | 主键类型 |
| fillable | array | [] | 允许被批量复制的属性 |
| casts | string | 无 | 数据格式化配置 |
| timestamps | bool | true | 是否自动维护时间戳 |
### 数据表名称