查询料架亮灯

This commit is contained in:
qianhao.xu
2024-11-01 17:00:01 +08:00
parent ced8e31bd4
commit a008a174a9
6 changed files with 137 additions and 0 deletions

View File

@@ -11,5 +11,22 @@ namespace DOAN.Admin.WebApi.Controllers.PBL;
public class BigScreenController : BaseController
{
private readonly IBigScreenService _BigScreenService;
public BigScreenController(IBigScreenService _BigScreenService)
{
this._BigScreenService = _BigScreenService;
}
//TODO 查询料架灯 亮和灭 情况
public IActionResult SearchShelfLightInfomation()
{
var response = _BigScreenService.SearchShelfLightInfomation();
return SUCCESS(response);
}
}