yanjinhui
2 天以前 5d756f53f07880dc8b7ba0bc9f060b9e94d4b25e
н¨Îļþ¼Ð/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/SquareCabin/CabinOrderController.cs
@@ -12,9 +12,17 @@
    [ApiController]
    public class CabinOrderController : ApiBaseController<ICabinOrderServices, Dt_CabinOrder>
    {
        public CabinOrderController(ICabinOrderServices service) : base(service)
        private readonly IBusiness _business;
        public CabinOrderController(ICabinOrderServices service, IBusiness business) : base(service)
        {
            _business = business;
        }
        [HttpPost, HttpGet, Route("GetUpstreamOrder"), AllowAnonymous]
        public WebResponseContent GetUpstreamOrder()
        {
            return _business.GetInOrder();
        }
        /// <summary>
        /// å®Œæˆå…¥åº“单
        /// </summary>