feat(api): 添加APK管理控制器和模型

- 创建Apk控制器实现完整的CRUD操作接口
- 添加Apk模型定义数据表结构
- 实现latest方法获取最新安装包文件
- 集成Attachment模型查询分类为apk的附件
- 提供统一的成功失败响应处理机制
This commit is contained in:
2026-04-09 11:08:57 +08:00
parent 5d9b2c1e9a
commit 91e2ee5fee
2 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,104 @@
<?php
namespace app\api\controller;
use app\common\model\Attachment;
use think\Controller;
use think\Request;
class Apk 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)
{
//
}
/**
* 获取分类为"apk"的最新安装包文件
*
* @return \think\Response
*/
public function latest()
{
$attachment = Attachment::where('category', 'apk')
->order('createtime', 'desc')
->find();
if (!$attachment) {
$this->error('暂无安装包');
}
$this->success('获取成功', $attachment->toArray());
}
}