qinchulong
2024-10-12 7281004dc3854ed59e9164dcd27a59c8c2cf6667
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Dt_InboundOrderPurchaseController.cs
对比新文件
@@ -0,0 +1,19 @@
锘縰sing Microsoft.AspNetCore.Mvc;
using WIDESEA_BusinessServices;
using WIDESEA_Core.BaseController;
using WIDESEA_IBusinessServices;
using WIDESEA_Model.Models;
namespace WIDESEA_WMSServer.Controllers
{
    [Route("api/Dt_InboundOrderPurchase")]
    [ApiController]
    public class Dt_InboundOrderPurchaseController : ApiBaseController<IDt_InboundOrderPurchaseService, Dt_InboundOrderPurchase>
    {
        private readonly IHttpContextAccessor _httpContextAccessor;
        public Dt_InboundOrderPurchaseController(IDt_InboundOrderPurchaseService service, IHttpContextAccessor httpContextAccessor) : base(service)
        {
            _httpContextAccessor = httpContextAccessor;
        }
    }
}