1
huangxiaoqiang
7 天以前 4dfe8ece141f05a163cf7d290b6fe4c520d89909
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;
        }
 
    }
}