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 { /// /// 出一个空托 /// /// [HttpPost("outEmptyVehicle")] public MobileApiResponse OutEmptyVehicle() => stockOutService.OutEmptyVehicle(); }