Files
orico-official-website/app/common/model/SysNavigationItemBaseModel.php

34 lines
720 B
PHP

<?php
declare (strict_types = 1);
namespace app\common\model;
/**
* 导航数据模型
* @mixin \think\Model
*/
class SysNavigationItemBaseModel extends BaseModel
{
// 表名
protected $name = 'sys_navigation_item';
// 主键
protected $pk = 'id';
// 字段信息
protected $schema = [
'id' => 'int',
'nav_id' => 'int',
'pid' => 'int',
'name' => 'string',
'icon' => 'string',
'link_to' => 'string',
'link' => 'string',
'sort' => 'int',
'blank' => 'int',
'status' => 'int',
'created_at' => 'datetime',
'updated_at' => 'datetime',
];
}