shgx_tz_mom/server/ZR.Admin.WebApi/Controllers/mes/mm/MmFinishedwarehouseController.cs

53 lines
1.2 KiB
C#
Raw Normal View History

2024-04-30 14:18:00 +08:00
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);
}
2024-05-17 10:32:19 +08:00
/// <summary>
/// 包装箱字位置
/// </summary>
/// <returns></returns>
[HttpGet("finish_point_pack")]
public IActionResult Finish_point_pack()
{
string[] response = finishedwarehouseService.Finish_point_pack();
return SUCCESS(response);
}
2024-04-30 14:18:00 +08:00
}
}