webman/console的 made:model 命令 可以根据数据库中的表格并读取表格所有参数生成model吗
具体该怎么操作?
php webman make:model users 生成的model文件并没有生成所有参数,也没有把属性的备注加进去
users表有两个字段id,name
生成文件如下
<?php
namespace app\model;
use support\Model;
/**
*
*/
class Users extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = null;
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
}
webman 也是可以的,但是参数得调整对
能给个例子吗
要正确配置数据库账号、密码、数据库名。
我是用 一键表单 去生成,然后把控制器和视图模版给删除...哈哈哈
我也是,自己加一个操作按钮
老哥直接一键菜单的地方 增加一个仅创建模型的功能就行了
后台的判断也简单, 在创建完模型后 返回就可以了