dengjunjie
3 天以前 aa5a0ac9a7d35d3a072fbe164ded24adbaa68b17
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
{
    [Route("api/[controller]")]
    [ApiController]
    public class Dt_OutOrderProductionController : ApiBaseController<IDt_OutOrderProductionService, Dt_OutOrderProduction>
    {
        private readonly IHttpContextAccessor _httpContextAccessor;
 
        public Dt_OutOrderProductionController(IDt_OutOrderProductionService service, IHttpContextAccessor httpContextAccessor) : base(service)
        {
            _httpContextAccessor = httpContextAccessor;
        }
    }
}