Files
IOT_API/IOT_API/Controllers/Inspection/BigScreenController.cs
T
2026-08-27 17:10:56 +08:00

15 lines
300 B
C#

using Microsoft.AspNetCore.Mvc;
namespace WebAPI.Controllers
{
/// <summary>
/// 数据大屏
/// </summary>
[ApiController]
[Route("api/inspection/bigscreen")]
public class BigScreenController : ControllerBase
{
// TODO: 实现 数据大屏 相关接口
}
}