This commit is contained in:
2024-08-15 10:23:36 +08:00
parent 5b3b6f6fbb
commit 4e2b817762
4 changed files with 261 additions and 40 deletions

View File

@@ -135,11 +135,11 @@ namespace ZR.Admin.WebApi.Controllers.mes.qc.IQC
/// <param name="query">查询值</param>
/// <returns>QcCommonFqcBoardDto 看板数据</returns>
[HttpPost("getProductAndPolishAndOneTimeFqcBoardData")]
public IActionResult GetProductAndPolishAndOneTimeFqcBoardData()
public IActionResult GetProductAndPolishAndOneTimeFqcBoardData([FromBody] QcProductAndPolishAndOneTimeFqcBoardQuery query)
{
try
{
var result = _commonFQCService.GetProductAndPolishAndOneTimeFqcBoardData();
var result = _commonFQCService.GetProductAndPolishAndOneTimeFqcBoardData(query);
return ToResponse(new ApiResult(200, "ok", result));
}
catch (Exception ex)