yanjinhui
3 天以前 bfc11f87e2b64420c9917c0b9881b3e327d6f796
н¨Îļþ¼Ð/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>