肖洋
2024-12-15 5431646d7fc6bd18e3fe9484b875084e620d6dc6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
 
namespace WIDESEA_WMSServer.Controllers.OutboundOrder
{
    [Route("api/[controller]")]
    [ApiController]
    public class Dt_OutOrderProductionDetailController : ApiBaseController<IDt_OutOrderProductionDetailService, Dt_OutOrderProductionDetail>
    {
        private readonly IHttpContextAccessor _httpContextAccessor;
 
        public Dt_OutOrderProductionDetailController(IDt_OutOrderProductionDetailService service, IHttpContextAccessor httpContextAccessor) : base(service)
        {
            _httpContextAccessor = httpContextAccessor;
        }
    }
}