Files
xianyan/docs/toolsapi/application/admin/controller/FeatureIssue.php
Developer f91be94e9c refactor: 完成项目架构重构,统一模块导入路径
- 清理大量废弃的 barrel 导出文件,移除冗余的中间导出层
- 修复所有相对路径导入错误,统一调整为扁平化模块引用
- 更新多平台 pubspec 版本号与依赖库版本
- 补充后端功能问题管理后台与脚本工具
- 调整部分页面的快捷方式文案适配新功能
- 更新部分翻译覆盖率与API文档
2026-06-12 08:53:57 +08:00

24 lines
486 B
PHP

<?php
namespace app\admin\controller;
use app\common\controller\Backend;
/**
* 功能问题管理
* @icon fa fa-bug
* @time 2026-06-12
* @description 管理功能问题列表,支持按严重程度和状态筛选
*/
class FeatureIssue extends Backend
{
protected $model = null;
protected $searchFields = 'id,description,flag_key';
public function _initialize()
{
parent::_initialize();
$this->model = new \app\admin\model\FeatureIssue;
}
}