优化IoTDB数据动态数据列查询

This commit is contained in:
ChenYi 2025-07-10 12:32:01 +08:00
parent d5236e060b
commit a380f6cbdd

View File

@ -9,6 +9,7 @@ using System.Threading.Tasks;
namespace JiShe.IoT.Controllers namespace JiShe.IoT.Controllers
{ {
[Route("Common")]
public class CommonController:IoTController public class CommonController:IoTController
{ {
private readonly ICommonService _commonService; private readonly ICommonService _commonService;
@ -22,7 +23,7 @@ namespace JiShe.IoT.Controllers
/// </summary> /// </summary>
/// <param name="input"></param> /// <param name="input"></param>
/// <returns></returns> /// <returns></returns>
[HttpGet("get-select-list")] [HttpGet("GetSelectList")]
[SwaggerOperation(summary: "根据type名称获取下拉框数据", Tags = new[] { "Common" })] [SwaggerOperation(summary: "根据type名称获取下拉框数据", Tags = new[] { "Common" })]
public List<SelectResult> GetSelectResultList(SelectResultListInput input) public List<SelectResult> GetSelectResultList(SelectResultListInput input)
{ {