存客宝应用接口初始化

This commit is contained in:
Ghost
2026-01-05 10:25:32 +08:00
parent fa37227954
commit 02797ba50a
414 changed files with 85530 additions and 75 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace app\cunkebao\controller\device;
use app\cunkebao\controller\BaseController;
use library\ResponseHelper;
/**
* 设备管理控制器
*/
class RefreshDeviceDetailV1Controller extends BaseController
{
/**
* 刷新设备
* @return \think\response\Json
*/
public function index()
{
try {
// TODO: 实现实际刷新设备状态的功能
return ResponseHelper::success();
} catch (\Exception $e) {
return ResponseHelper::error($e->getMessage(), $e->getCode());
}
}
}