chengpingruku
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using ZR.Admin.WebApi.Filters;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using ZR.Service.mes.mm;
|
||||
using ZR.Service.mes.mm.IService;
|
||||
|
||||
namespace ZR.Admin.WebApi.Controllers.mes.mm
|
||||
{
|
||||
/// <summary>
|
||||
/// 成品入库
|
||||
/// </summary>
|
||||
[Verify]
|
||||
[Route("mes/mm/MmFinishedwarehouse")]
|
||||
public class MmFinishedwarehouseController : BaseController
|
||||
{
|
||||
|
||||
IMmFinishedwarehouseService finishedwarehouseService;
|
||||
public MmFinishedwarehouseController(IMmFinishedwarehouseService finishedwarehouseService)
|
||||
{
|
||||
this. finishedwarehouseService=finishedwarehouseService;
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 成品入库位置
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[HttpGet("finish_point")]
|
||||
public IActionResult Finish_point()
|
||||
{
|
||||
string[] response = finishedwarehouseService.Finish_point();
|
||||
|
||||
return SUCCESS(response);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user