1
huangxiaoqiang
2025-06-02 77cb2ebaabb2f8eefd55cee34dfae7f123c436fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
        }
 
    }
}