本月每天产量

This commit is contained in:
qianhao.xu
2024-12-22 15:12:10 +08:00
parent 37146621c1
commit 54e920680d
9 changed files with 224 additions and 116 deletions

View File

@@ -35,6 +35,25 @@ namespace DOAN.Admin.WebApi.Controllers.MES.SmartScreen.Product
}
//TODO 今日 各工序产量统计
[HttpGet("BarProcessProductStatistic")]
public IActionResult BarProcessProductStatistic()
{
var response = _productSmartScreenService.BarProcessProductStatistic();
return SUCCESS(response);
}
//TODO 本月产量 折线图
//本月每天产量
[HttpGet("outputOfCurrentmonth")]
public IActionResult OutputOfCurrentmonth()
{
var response = _productSmartScreenService.OutputOfCurrentmonth();
return SUCCESS(response);
}