// +---------------------------------------------------------------------- namespace app\model; use think\Model; use think\model\concern\SoftDelete; /** * 系统菜单模型 */ class SystemMenu extends Model { // 启用软删除 use SoftDelete; // 数据库表名 protected $name = 'mete_system_menu'; // 字段类型转换 protected $type = [ 'id' => 'integer', 'pid' => 'integer', 'title' => 'string', 'path' => 'string', 'component_path' => 'string', 'icon' => 'string', 'sort' => 'integer', 'status' => 'integer', 'type' => 'integer', 'permission' => 'string', 'remark' => 'string', 'creater' => 'string', 'create_time' => 'datetime', 'update_time' => 'datetime', 'delete_time' => 'datetime', ]; }