刘磊
2025-06-10 87b6fc65bc3b6cce03af04758db82236d29bc7e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace WIDESEA_WMSServer.Controllers;
 
[Route("api/[controller]")]
[ApiController]
public class BoxingInfoDetailController : ApiBaseController<IBoxingInfoDetailService, DtBoxingInfoDetail>
{
    public BoxingInfoDetailController(IBoxingInfoDetailService service) : base(service)
    {
    }
 
    [HttpGet, HttpPost, Route("GetBarcodeDetial"), AllowAnonymous]
    public object GetBarcodeDetial([FromBody]string palletCode)
    {
        return Service.GetBarcodeDetial(palletCode);
    }
}