logistics_sy/app/api/controller/AppUpdateController.php

13 lines
351 B
PHP
Raw Normal View History

2023-12-04 10:44:39 +08:00
<?php
namespace app\api\controller;
use app\common\model\AppUpdate;
class AppUpdateController extends BaseApiController
{
public function index() {
$data = AppUpdate::field('id,title,content,type,version,dow_url,force,quiet')->where('')->order('id desc')->findOrEmpty();
return $this->success('请求成功',$data->toArray());
}
}