获取本月安全生产数据
This commit is contained in:
@@ -1,18 +1,29 @@
|
||||
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
|
||||
{
|
||||
|
||||
public SiteSafeGreenCrossSmartController() { }
|
||||
private readonly ISiteSafeGreenCrossSmartService siteSafeGreenCrossSmartService;
|
||||
public SiteSafeGreenCrossSmartController(ISiteSafeGreenCrossSmartService siteSafeGreenCrossSmartService) {
|
||||
siteSafeGreenCrossSmartService = siteSafeGreenCrossSmartService;
|
||||
}
|
||||
|
||||
|
||||
//TODO 获取本月安全生产数据
|
||||
public IActionResult GetGeenCrossSmartScreenForMonth()
|
||||
{
|
||||
var response = siteSafeGreenCrossSmartService.GetGeenCrossSmartScreenForMonth();
|
||||
return SUCCESS(response);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user