1
huangxiaoqiang
2025-10-24 927ce822017ff8459be84b742d519970ca614096
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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/AllocateOutboundOrderDetail")]
    [ApiController]
    public class AllocateOutboundOrderDetailController : ApiBaseController<IDt_AllocateOutboundOrderDetailService, Dt_AllocateOutboundOrderDetail>
    {
        private readonly IHttpContextAccessor _httpContextAccessor;
        public AllocateOutboundOrderDetailController(IDt_AllocateOutboundOrderDetailService service, IHttpContextAccessor httpContextAccessor) : base(service)
        {
            _httpContextAccessor = httpContextAccessor;
        }
 
    }
}