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
|
{
|
|
/// <summary>
|
/// 调拨单
|
/// </summary>
|
[Route("api/AllocateOrder")]
|
[ApiController]
|
public class AllocateOrderController : ApiBaseController<IAllocateService, Dt_AllocateOrder>
|
{
|
public AllocateOrderController(IAllocateService service) : base(service)
|
{
|
}
|
|
|
}
|
|
}
|