wms_serve_m_jingwangchengpin/WmsMobileServe/ApiServe/Mobile/Controllers/StockOutController.cs
2025-01-15 07:53:20 +08:00

20 lines
521 B
C#

using Microsoft.AspNetCore.Mvc;
using WmsMobileServe.ApiServe.Mobile.Service;
using WmsMobileServe.ApiServe.Mobile.Vo;
namespace WmsMobileServe.ApiServe.Mobile.Controllers;
[Route("api/mobile/stockOut")]
[ApiController]
public class StockOutController(StockOutService stockOutService) : ControllerBase
{
/// <summary>
/// 出一个空托
/// </summary>
/// <returns></returns>
[HttpPost("outEmptyVehicle")]
public MobileApiResponse OutEmptyVehicle() => stockOutService.OutEmptyVehicle();
}