34 lines
717 B
PHP
34 lines
717 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_type' => 'int',
|
|
'link' => 'string',
|
|
'sort' => 'int',
|
|
'blank' => 'int',
|
|
'status' => 'int',
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
}
|