using WIDESEA_IStorageBasicService;
|
|
namespace WIDESEA_WMSServer.Controllers;
|
|
[Route("api/Dt_PalletStockInfoDetail")]
|
[ApiController]
|
public class Dt_PalletStockInfoDetailController : ApiBaseController<IDt_PalletStockInfoDetailService, Dt_PalletStockInfoDetail>
|
{
|
public Dt_PalletStockInfoDetailController(IDt_PalletStockInfoDetailService service) : base(service)
|
{
|
|
}
|
|
[HttpGet, HttpPost, Route("GetBarcodeDetial"), AllowAnonymous]
|
public object GetBarcodeDetial([FromBody] string palletCode)
|
{
|
return Service.GetBarcodeDetial(palletCode);
|
}
|
}
|