空箱补货

This commit is contained in:
qianhao.xu
2024-11-04 10:15:34 +08:00
parent b31e8c76e9
commit f664b5beac
9 changed files with 233 additions and 137 deletions

View File

@@ -6,7 +6,7 @@ using DOAN.Admin.WebApi.Filters;
namespace DOAN.Admin.WebApi.Controllers.PBL;
[Verify]
[AllowAnonymous]
[Route("PBL/bigscreen")]
public class BigScreenController : BaseController
{
@@ -27,7 +27,12 @@ public class BigScreenController : BaseController
return SUCCESS(response);
}
//TODO 查询补料 情况
[HttpGet("searchfeedingMaterial")]
public IActionResult SearchfeedingMaterialInfomation()
{
var response= _BigScreenService.SearchfeedingMaterialInfomation();
return SUCCESS(response);
}
}