smartScreen

This commit is contained in:
qianhao.xu
2024-12-19 19:44:47 +08:00
parent dd534102c0
commit 1e026edc8f
6 changed files with 261 additions and 3 deletions

View File

@@ -0,0 +1,44 @@
using Microsoft.AspNetCore.Mvc;
using DOAN.Admin.WebApi.Filters;
using DOAN.Service.MES.product.IService;
using DOAN.Service.MES.SmartScreen.Product.IService;
namespace DOAN.Admin.WebApi.Controllers.MES.SmartScreen.Product
{
/// <summary>
/// 生产智慧屏
/// </summary>
[Verify]
[Route("mes/SmartScreen/Product")]
public class ProductSmartScreenController : BaseController
{
private readonly IProductSmartScreenService _productSmartScreenService;
public ProductSmartScreenController(IProductSmartScreenService productSmartScreenService)
{
_productSmartScreenService = productSmartScreenService;
}
/// <summary>
/// 数字翻牌器
/// </summary>
/// <returns></returns>
[HttpGet("digital_turntable")]
public IActionResult DigitalTurntable()
{
var response= _productSmartScreenService.DigitalTurntable();
return SUCCESS(response);
}
}
}