18 lines
523 B
C#
18 lines
523 B
C#
/*
|
|
*设备管理扩展 — 骨架
|
|
*TODO: Phase 2 联调时实现 GetRegionTree/GetDevicesByPoint
|
|
*/
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Warehouse.Controllers
|
|
{
|
|
public partial class base_deviceController
|
|
{
|
|
[HttpGet, Route("/api/DeviceManager/GetRegionTree")]
|
|
public IActionResult GetRegionTree() => Ok(new object[0]);
|
|
|
|
[HttpGet, Route("/api/DeviceManager/GetDevicesByPoint")]
|
|
public IActionResult GetDevicesByPoint() => Ok(new { items = new object[0], total = 0 });
|
|
}
|
|
}
|