using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.BaseController; 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) { } } }