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

15 lines
306 B
C#

using Microsoft.AspNetCore.Mvc;
namespace WebAPI.Controllers
{
/// <summary>
/// 系统参数配置
/// </summary>
[ApiController]
[Route("api/system/param")]
public class SystemParamController : ControllerBase
{
// TODO: 实现 系统参数配置 相关接口
}
}