This commit is contained in:
qianhao.xu
2024-12-27 16:19:40 +08:00
parent caa7faac58
commit 3449390800
4 changed files with 129 additions and 0 deletions

View File

@@ -60,6 +60,20 @@ namespace DOAN.WebApi.Controllers.MES.quality.FQC
return SUCCESS(response);
}
//TODO 分页查询缺陷统计
[HttpPost("search_defect_Statistics_page")]
public IActionResult SearchDefectStatisticsPage([FromBody]QueryFQCShowDto queryFQCShow)
{
if(queryFQCShow == null)
{
throw new CustomException("queryFQCShow为空");
}
var response = qcFinishedproductDefectService.SearchDefectStatisticsPage(queryFQCShow);
return SUCCESS(response);
}
}
}