smartScreen
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user