feat(arc): 新增ARC设备管理功能

- 创建了ARC设备管理的完整CRUD功能模块
- 实现了后台控制器、模型、验证器和视图文件
- 配置了应用基础设置和站点信息参数
- 添加了API接口控制器和数据模型
- 集成了Bootstrap表格组件和表单验证功能
- 支持设备IMEI、APP ID、SDK KEY等关键信息管理
- 实现软删除和回收站功能
- 配置了前端页面模板和JavaScript交互逻辑
This commit is contained in:
2026-04-08 09:28:23 +08:00
parent 0a605caefe
commit e4cdd21c77
25 changed files with 1641 additions and 76 deletions

View File

@@ -0,0 +1,86 @@
<?php
namespace app\api\controller;
use think\Controller;
use think\Request;
class Arc extends Controller
{
/**
* 显示资源列表
*
* @return \think\Response
*/
public function index()
{
//
}
/**
* 显示创建资源表单页.
*
* @return \think\Response
*/
public function create()
{
//
}
/**
* 保存新建的资源
*
* @param \think\Request $request
* @return \think\Response
*/
public function save(Request $request)
{
//
}
/**
* 显示指定的资源
*
* @param int $id
* @return \think\Response
*/
public function read($id)
{
//
}
/**
* 显示编辑资源表单页.
*
* @param int $id
* @return \think\Response
*/
public function edit($id)
{
//
}
/**
* 保存更新的资源
*
* @param \think\Request $request
* @param int $id
* @return \think\Response
*/
public function update(Request $request, $id)
{
//
}
/**
* 删除指定资源
*
* @param int $id
* @return \think\Response
*/
public function delete($id)
{
//
}
}