using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using WIDESEA_Core; using WIDESEA_Core.Attributes; using WIDESEA_Core.BaseController; using WIDESEA_DTO.Inbound; using WIDESEA_IAllocateService; using WIDESEA_Model.Models; namespace WIDESEA_WMSServer.Controllers.Allocate { /// /// 调拨单明细 /// [Route("api/AllocateOrderDetail")] [ApiController] public class AllocateOrderDetailController : ApiBaseController { public AllocateOrderDetailController(IAllocateDetailService service) : base(service) { } } }