huangxiaoqiang
2025-10-27 387731cab892804912e68cb91e6fb804411c4756
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using Microsoft.AspNetCore.Mvc;
using WIDESEA_BusinessServices;
using WIDESEA_Core.BaseController;
using WIDESEA_IBusinessServices;
using WIDESEA_IOrderServices;
using WIDESEA_Model.Models;
using WIDESEA_Model.Models.Basic;
using WIDESEA_Model.Models.Order;
using WIDESEAWCS_BasicInfoService;
 
namespace WIDESEA_WMSServer.Controllers
{
    [Route("api/InboundOrder")]
    [ApiController]
    public class InboundOrderController : ApiBaseController<IDt_InboundOrderService, Dt_InboundOrder>
    {
        private readonly IHttpContextAccessor _httpContextAccessor;
        public InboundOrderController(IDt_InboundOrderService service, IHttpContextAccessor httpContextAccessor) : base(service)
        {
            _httpContextAccessor = httpContextAccessor;
        }
        [HttpGet,HttpPost,Route("GetInboundOrderInfo"),AllowAnonymous]
        public WebResponseContent GetInboundOrderInfo(string orderNo)
        {
            return Service.GetInboundOrderInfo(orderNo);
        }
 
    }
}