using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_BusinessServices;
|
using WIDESEA_Core.BaseController;
|
using WIDESEA_IBusinessServices;
|
using WIDESEA_Model.Models;
|
using WIDESEAWCS_BasicInfoService;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEA_WMSServer.Controllers
|
{
|
[Route("api/dt_needBarcode")]
|
[ApiController]
|
public class dt_needBarcodeController : ApiBaseController<Idt_needBarcodeService, dt_needBarcode>
|
{
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
public dt_needBarcodeController(Idt_needBarcodeService service, IHttpContextAccessor httpContextAccessor) : base(service)
|
{
|
_httpContextAccessor = httpContextAccessor;
|
}
|
|
}
|
}
|