using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core.BaseController;
using WIDESEA_IAllocateService;
using WIDESEA_IInboundService;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.Allocate;
namespace WIDESEA_WMSServer.Controllers.Allocate
{
///
/// 调拨单
///
[Route("api/AllocateOrder")]
[ApiController]
public class AllocateOrderController : ApiBaseController
{
public AllocateOrderController(IAllocateService service) : base(service)
{
}
}
}