From 44a974628d37542903657327b2b63a8ff2339509 Mon Sep 17 00:00:00 2001 From: xins Date: Fri, 27 Sep 2024 18:06:00 +0800 Subject: [PATCH] =?UTF-8?q?3.1.7:=20PDA=E6=88=90=E5=93=81=E5=85=A5?= =?UTF-8?q?=E5=BA=93=EF=BC=9A=E5=90=88=E5=B9=B6=E7=9A=84=E6=9D=A1=E7=A0=81?= =?UTF-8?q?=E9=80=BB=E8=BE=91=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/hw/mes/api/RemoteMesService.java | 2 +- .../com/hw/mes/controller/MesBaseBarcodeInfoController.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hw-api/hw-api-mes/src/main/java/com/hw/mes/api/RemoteMesService.java b/hw-api/hw-api-mes/src/main/java/com/hw/mes/api/RemoteMesService.java index 0fa0cd6..e1c45b7 100644 --- a/hw-api/hw-api-mes/src/main/java/com/hw/mes/api/RemoteMesService.java +++ b/hw-api/hw-api-mes/src/main/java/com/hw/mes/api/RemoteMesService.java @@ -164,6 +164,6 @@ public interface RemoteMesService { * @param source 请求来源 * @return 结果 */ - @GetMapping("/barcode/selectBindBarcodeListByBarcodeInfo/{barcodeId}") + @GetMapping("/barcode/selectBindBarcodeListByBarcodeInfo/{barcodeInfo}") public R> selectBindBarcodeListByBarcodeInfo(@PathVariable("barcodeInfo") String barcodeInfo, @RequestHeader(SecurityConstants.FROM_SOURCE) String source); } diff --git a/hw-modules/hw-mes/src/main/java/com/hw/mes/controller/MesBaseBarcodeInfoController.java b/hw-modules/hw-mes/src/main/java/com/hw/mes/controller/MesBaseBarcodeInfoController.java index 94d3fb6..35d8ce7 100644 --- a/hw-modules/hw-mes/src/main/java/com/hw/mes/controller/MesBaseBarcodeInfoController.java +++ b/hw-modules/hw-mes/src/main/java/com/hw/mes/controller/MesBaseBarcodeInfoController.java @@ -409,4 +409,5 @@ public class MesBaseBarcodeInfoController extends BaseController queryBindBarcode.setBarcodeInfo(barcodeInfo); return R.ok(mesBaseBarcodeInfoService.selectMesBaseBindBarcodeList(queryBindBarcode)); } + }