质量大屏

This commit is contained in:
卢江海
2025-03-27 20:01:44 +08:00
parent 65ff7d3878
commit 7c730550d0
3 changed files with 84 additions and 7 deletions

View File

@@ -75,5 +75,18 @@ namespace DOAN.Admin.WebApi.Controllers.MES.SmartScreen.Quality
var response = _QualitySmartService.GetQualitySmartScreenForBarChart();
return SUCCESS(response);
}
/// <summary>
/// 按月获取质量大屏数据折线图
/// </summary>
/// <returns></returns>
[HttpGet("GetQualitySmartScreenForLineChart")]
[AllowAnonymous]
public IActionResult GetQualitySmartScreenForLineChart()
{
var response = _QualitySmartService.GetQualitySmartScreenForLineChart();
return SUCCESS(response);
}
}
}