Files
orico-official-website/app/common/model/SysNavigationItemBaseModel.php
jsasg 9584b81729
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 4s
refactor: banner|navigation
2026-03-27 17:59:08 +08:00

36 lines
788 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',
'desc' => 'string',
'icon' => 'string',
'image' => 'string',
'link_to' => 'string',
'link' => 'string',
'sort' => 'int',
'blank' => 'int',
'status' => 'int',
'created_at' => 'datetime',
'updated_at' => 'datetime',
];
}