Files
kunshan-bzfm-mes-backend/DOAN.Admin.WebApi/Controllers/MES/SmartScreen/Site/SiteSafeGreenCrossSmartController.cs
2025-04-14 17:04:28 +08:00

29 lines
955 B
C#

using DOAN.Admin.WebApi.Filters;
using DOAN.Service.MES.SmartScreen.Site.IService;
using Microsoft.AspNetCore.Mvc;
namespace DOAN.Admin.WebApi.Controllers.MES.SmartScreen.Site
{
/// <summary>
/// 绿色安全十字架生产
/// </summary>
[Verify]
[Route("mes/qualityManagement/QualitySmart")]
public class SiteSafeGreenCrossSmartController : BaseController
{
private readonly ISiteSafeGreenCrossSmartService siteSafeGreenCrossSmartService;
public SiteSafeGreenCrossSmartController(ISiteSafeGreenCrossSmartService siteSafeGreenCrossSmartService) {
siteSafeGreenCrossSmartService = siteSafeGreenCrossSmartService;
}
//TODO 获取本月安全生产数据
public IActionResult GetGeenCrossSmartScreenForMonth()
{
var response = siteSafeGreenCrossSmartService.GetGeenCrossSmartScreenForMonth();
return SUCCESS(response);
}
}
}